IParagraphCollection

IParagraphCollection

Overview

IParagraphCollection is a interface in Aspose.Slides FOSS for Java. Inherits from: Iterable<IParagraph>.

Represents a collection of paragraphs.

This interface provides 14 methods for working with IParagraphCollection objects in Java programs. Available methods include: add, asIEnumerable, asIPresentationComponent, asISlideComponent, clear, contains, count, get, indexOf, insert, isReadOnly, remove, and 2 additional methods. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: readOnly.

Properties

NameTypeAccessDescription
readOnlybooleanReadGets a value indicating whether the collection is read-only.

Methods

SignatureDescription
get(index: int)IParagraphGets the paragraph at the specified index.
size()intReturns the number of paragraphs in the collection.
count()intGets the number of elements actually contained in the collection.
asISlideComponent()ISlideComponentReturns 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)booleanRemoves the first occurrence of the specified paragraph.
isReadOnly()booleanGets a value indicating whether the collection is read-only.
contains(item: IParagraph)booleanDetermines whether the collection contains the specified paragraph.
indexOf(item: IParagraph)intReturns the zero-based index of the first occurrence of the specified paragraph.
asIPresentationComponent()IPresentationComponentReturns this instance as {@link IPresentationComponent}.

See Also