ParagraphCollection

ParagraphCollection

Overview

ParagraphCollection is a class in Aspose.Slides FOSS for Java. Inherits from: BaseCollection<IParagraph>, IParagraphCollection, ISlideComponent.

Represents a collection of paragraphs.

This class provides 21 methods for working with ParagraphCollection objects in Java programs. Available methods include: ParagraphCollection, add, asIEnumerable, asIPresentationComponent, asISlideComponent, clear, contains, count, get, getParagraphs, getPresentation, getSlide, and 8 additional methods. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: paragraphs, presentation, readOnly, slide.

Properties

NameTypeAccessDescription
paragraphsList<IParagraph>ReadBuilds and returns the list of paragraphs.
readOnlybooleanReadGets the read only.
slideIBaseSlideReadGets the slide.
presentationIPresentationReadGets the presentation.

Methods

SignatureDescription
ParagraphCollection()Creates an empty ParagraphCollection.
ParagraphCollection(paragraphs: List<IParagraph>)Creates a ParagraphCollection with the given initial paragraphs.
initInternal(txbodyElement: Element, slidePart: Object, parentSlide: IBaseSlide)ParagraphCollectionInitialises 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()intReturns the number of paragraphs (alias of size)
isReadOnly()booleanReturns true if read only is set.
asISlideComponent()ISlideComponentReturns the collection as an ISlideComponent
asIEnumerable()Iterable<IParagraph>Returns an Iterable over the paragraphs
asIPresentationComponent()IPresentationComponentReturns the collection as an IPresentationComponent
getSlide()IBaseSlideReturns the slide.
getPresentation()IPresentationReturns the presentation.
add(value: IParagraph)Appends a paragraph to the end of the collection
insert(index: int, value: IParagraph)
indexOf(item: IParagraph)intReturns the index of the given paragraph or -1 if absent
contains(item: IParagraph)booleanReturns true if the collection includes the specified paragraph
clear()
removeAt(index: int)Removes the paragraph at the given index
remove(item: IParagraph)booleanDeletes the specified paragraph and returns success status
iterator()Iterator<IParagraph>Provides an iterator over the paragraphs

See Also