Limitations
Read only.
Gets a collection of all images contained in the main text of the document. The property value is an object of the type Image
public ImageCollection Images { get; }
Public ReadOnly Property Images() As ImageCollection
The following examples describes how to use the 'TXText
TXTextControl.MainText mainText = textControl1.TextParts.GetMainText();
//...
TXTextControl.ImageCollection myMainTextImageColl = mainText.Images;
//...
Dim mainText As TXTextControl.MainText = TextControl1.TextParts.GetMainText()
'...
Dim myMainTextImageColl As TXTextControl.ImageCollection = mainText.Images
'...
Read only.