TextParagraphCollection
Contents
[
Hide
]TextParagraphCollection class
Represents all text paragraph.
class TextParagraphCollection;
Properties
| Property | Type | Description |
|---|---|---|
| count | number | Readonly. Gets the count of text paragraphs. |
Methods
| Method | Description |
|---|---|
| get(number) | Gets the TextParagraph object at specific index. |
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets the count of text paragraphs. |
| getEnumerator() | Gets the enumerator of the paragraphs. |
| isNull() | Checks whether the implementation object is null. |
count
Readonly. Gets the count of text paragraphs.
count : number;
get(number)
Gets the TextParagraph object at specific index.
get(index: number) : TextParagraph;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The index. |
Returns
getCount()
@deprecated. Please use the ‘count’ property instead. Gets the count of text paragraphs.
getCount() : number;
getEnumerator()
Gets the enumerator of the paragraphs.
getEnumerator() : TextParagraphEnumerator;
Returns
isNull()
Checks whether the implementation object is null.
isNull() : boolean;