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