IParagraphCollection
Overview
IParagraphCollection is a interface in Aspose.Slides FOSS for Java.
Inherits from: Iterable<IParagraph>.
Represents a collection of paragraphs.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
readOnly | boolean | Read | Gets a value indicating whether the collection is read-only. |
Methods
| Signature | Description |
|---|---|
get(index: int) → IParagraph | Gets the paragraph at the specified index. |
size() → int | Returns the number of paragraphs in the collection. |
count() → int | Gets the number of elements actually contained in the collection. |
asISlideComponent() → ISlideComponent | Returns the base {@link ISlideComponent} interface. |
asIEnumerable() → Iterable<IParagraph> | Returns this collection as an iterable. |
add(value: IParagraph) | Adds a paragraph to the end of the collection. |
insert(index: int, value: IParagraph) | Inserts a paragraph at the specified index. |
clear() | Removes all paragraphs from the collection. |
removeAt(index: int) | Removes the paragraph at the specified index. |
remove(item: IParagraph) → boolean | Removes the first occurrence of the specified paragraph. |
isReadOnly() → boolean | Gets a value indicating whether the collection is read-only. |
contains(item: IParagraph) → boolean | Determines whether the collection contains the specified paragraph. |
indexOf(item: IParagraph) → int | Returns the zero-based index of the first occurrence of the specified paragraph. |
asIPresentationComponent() → IPresentationComponent | Returns this instance as {@link IPresentationComponent}. |