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