Limitations
Read only.
Gets a collection of all text frames contained in the main text of the document. The property value is an object of the type Text
Introduced: 12.0.
public TextFrameCollection TextFrames { get; }
Public ReadOnly Property TextFrames() As TextFrameCollection
The following examples describes how to use the 'TXText
TXTextControl.MainText mainText = textControl1.TextParts.GetMainText();
//..
TXTextControl.TextFrameCollection myMainTextTexytFrameColl = mainText.TextFrames;
//...
Dim mainText As TXTextControl.MainText = TextControl1.TextParts.GetMainText()
'...
Dim myMainTextTexytFrameColl As TXTextControl.TextFrameCollection = mainText.TextFrames
'...
Read only.