IRowCollection — Aspose.Slides FOSS Java API Reference

IRowCollection — Represents a collection of rows in a table.

Package: org.aspose.slides.foss


Methods

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

See Also