IRowCollection — Aspose.Slides FOSS Java API Reference
IRowCollection — Represents a collection of rows in a table.
Package: org.aspose.slides.foss
Methods
| Method | Returns | Description |
|---|---|---|
get(int index) | IRow | Gets the row at the specified index. |
size() | int | Returns 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) | void | Removes the row at the specified index. |
asICollection() | List<IRow> | Returns the collection as a List. |
asIEnumerable() | Iterable<IRow> | Returns the collection as an Iterable. |