IColumnCollection
Overview
IColumnCollection is a interface in Aspose.Slides FOSS for .NET.
Represents a collection of table columns.
This interface provides 3 methods for working with IColumnCollection 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 columns. |
AsICollection | IList<IColumn> | Read | Gets a shallow copy of all columns as a list. |
AsIEnumerable | IEnumerable<IColumn> | Read | Gets an enumerable over the columns. |
Methods
| Signature | Description |
|---|---|
AddClone(templ: IColumn, withAttachedColumns: bool) | Clones the template column and appends the result to the end of the collection. |
InsertClone(index: int, templ: IColumn, withAttachedColumns: bool) | Clones the template column and inserts the result at the specified position. |
RemoveAt(index: int, withAttachedRows: bool) | Removes the column at the specified index. |