PortionCollection

PortionCollection

Overview

PortionCollection is a class in Aspose.Slides FOSS for Java. Inherits from: IPortionCollection.

Represents a collection of text portions within a paragraph.

Properties

NameTypeAccessDescription
readOnlybooleanRead

Methods

SignatureDescription
PortionCollection()Creates an empty PortionCollection.
PortionCollection(portions: List<IPortion>)Creates a PortionCollection with the given initial portions.
PortionCollection(pElement: Element, saveCallback: Runnable)Creates an XML-backed PortionCollection.
get(index: int)IPortionReturns the IPortion at the specified index
size()int
count()intReturns the number of portions (alias of size)
isReadOnly()boolean
asIEnumerable()Iterable<IPortion>Provides an Iterable over the portions
add(value: IPortion)Appends a portion to the end of the collection
indexOf(item: IPortion)intReturns the index of the specified portion or -1
insert(index: int, value: IPortion)Inserts a portion at the given index
clear()
contains(item: IPortion)booleanChecks if the collection includes the specified portion
remove(item: IPortion)booleanDeletes the first occurrence of the portion and returns success
removeAt(index: int)Deletes the portion at the given index
iterator()Iterator<IPortion>Returns an iterator over the portions

See Also