SubDocument.paragraphsInfo Property
Returns information about paragraphs in the sub-document.
Declaration
get paragraphsInfo(): Paragraph[]
Property Value
Type | Description |
---|---|
Paragraph[] | An array of objects that contain information about paragraphs. |
Remarks
var paragraphs = richEdit.document.activeSubDocument.paragraphsInfo;
You can use the findParagraphs(arg) method to get an array of paragraphs that match the search conditions.
Refer to the following section for more information: Access a Structural Element.
See Also