Gets a collection of all images contained in the main text of the document. The property value is an object of the type ImageCollection.

Syntax

public ImageCollection Images { get; }
Public ReadOnly Property Images() As ImageCollection

Examples

The following examples describes how to use the 'TXTextControl.MainText.Images' property by storing it in a variable of the type 'TXTextControl.ImageCollection'.

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
'...

Limitations

Read only.