IRowCollection
Overview
IRowCollection is a interface in Aspose.Slides FOSS for Java.
Represents a collection of rows in a table.
Methods
| Signature | Description |
|---|---|
get(index: int) → IRow | Gets the row at the specified index. |
size() → int | Returns 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}. |