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

NameTypeAccessDescription
CountintReadGets the number of rows.
AsICollectionIList<IRow>ReadGets a shallow copy of all rows as a list.
AsIEnumerableIEnumerable<IRow>ReadGets an enumerable over the rows.

Methods

SignatureDescription
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.

See Also