Limitations
Read only.
Gets a collection of all images, textframes, charts, barcodes and drawings contained in the main text of the document. The property value is an object of the type Frame
Introduced: X13.
public FrameCollection Frames { get; }
Public ReadOnly Property Frames() As FrameCollection
The following examples describes how to use the 'TXText
TXTextControl.MainText mainText = textControl1.TextParts.GetMainText();
//...
TXTextControl.FrameCollection myMainTextFramesColl = mainText.Frames;
//...
Dim mainText As TXTextControl.MainText = TextControl1.TextParts.GetMainText()
'...
Dim myMainTextFramesColl As TXTextControl.FrameCollection = mainText.Frames
'...
Read only.