IColumnCollection

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

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

Methods

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

See Also