IRowCollection

Overview

IRowCollection is a interface in Aspose.Slides FOSS for Java.

Represents a collection of rows in a table.

This interface provides 7 methods for working with IRowCollection objects in Java programs. Available methods include: addClone, asICollection, asIEnumerable, get, insertClone, removeAt, size. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package.

Methods

SignatureDescription
get(index: int)IRowGets the row at the specified index.
size()intReturns the number of rows in the collection.
addClone(templ: IRow, withAttachedRows: boolean)IRow[]Adds a clone of the given row to the collection.
insertClone(index: int, templ: IRow, withAttachedRows: boolean)IRow[]Inserts a clone of the given row at the specified index.
removeAt(firstRowIndex: int, withAttachedRows: boolean)Removes the row at the specified index.
asICollection()List<IRow>Returns the collection as a {@link List}.
asIEnumerable()Iterable<IRow>Returns the collection as an {@link Iterable}.

See Also