IRowCollection
Overview
IRowCollection is a interface in Aspose.Slides FOSS for .NET.
Represents a collection of table rows.
This interface provides 3 methods for working with IRowCollection objects in .NET programs.
Available methods include: AddClone, InsertClone, RemoveAt.
All public members are accessible to any .NET application after installing the Aspose.Slides FOSS for .NET package.
Properties: AsICollection, AsIEnumerable, Count.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
Count | int | Read | Gets the number of rows. |
AsICollection | IList<IRow> | Read | Gets a shallow copy of all rows as a list. |
AsIEnumerable | IEnumerable<IRow> | Read | Gets an enumerable over the rows. |
Methods
| Signature | Description |
|---|---|
AddClone(templ: IRow, withAttachedRows: bool) | Clones the template row and appends the result to the end of the collection. |
InsertClone(index: int, templ: IRow, withAttachedRows: bool) | Clones the template row and inserts the result at the specified position. |
RemoveAt(firstRowIndex: int, withAttachedRows: bool) | Removes the row at the specified index. |