ParagraphCollection
Overview
ParagraphCollection is a class in Aspose.Slides FOSS for Java.
Inherits from: BaseCollection<IParagraph>, IParagraphCollection, ISlideComponent.
Represents a collection of paragraphs.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
paragraphs | List<IParagraph> | Read | Builds and returns the list of paragraphs. |
readOnly | boolean | Read | Property indicates if the collection is read‑only |
slide | IBaseSlide | Read | Property gets the owning slide of the collection |
presentation | IPresentation | Read | Property gets the containing presentation |
Methods
| Signature | Description |
|---|---|
ParagraphCollection() | Creates an empty ParagraphCollection. |
ParagraphCollection(paragraphs: List<IParagraph>) | Creates a ParagraphCollection with the given initial paragraphs. |
initInternal(txbodyElement: Element, slidePart: Object, parentSlide: IBaseSlide) → ParagraphCollection | Initialises this collection from an OOXML text-body element. |
getParagraphs() → List<IParagraph> | Builds and returns the list of paragraphs. |
get(index: int) → IParagraph | |
size() → int | |
count() → int | Returns the number of paragraphs (alias of size) |
isReadOnly() → boolean | |
asISlideComponent() → ISlideComponent | Returns the collection as an ISlideComponent |
asIEnumerable() → Iterable<IParagraph> | Returns an Iterable over the paragraphs |
asIPresentationComponent() → IPresentationComponent | Returns the collection as an IPresentationComponent |
getSlide() → IBaseSlide | Returns the slide that owns this collection |
getPresentation() → IPresentation | Returns the presentation containing this collection |
add(value: IParagraph) | Appends a paragraph to the end of the collection |
insert(index: int, value: IParagraph) | |
indexOf(item: IParagraph) → int | Returns the index of the given paragraph or -1 if absent |
contains(item: IParagraph) → boolean | Returns true if the collection includes the specified paragraph |
clear() | |
removeAt(index: int) | Removes the paragraph at the given index |
remove(item: IParagraph) → boolean | Deletes the specified paragraph and returns success status |
iterator() → Iterator<IParagraph> | Provides an iterator over the paragraphs |