IColumnCollection
Overview
IColumnCollection is a interface in Aspose.Slides FOSS for Java.
Represents collection of columns in a table.
Methods
| Signature | Description |
|---|---|
get(index: int) → IColumn | Gets the column at the specified index. |
size() → int | Returns the number of columns in the collection. |
addClone(templ: IColumn, withAttachedColumns: boolean) → List<IColumn> | Creates a copy of the specified template column and adds it to the end. |
insertClone(index: int, templ: IColumn, withAttachedColumns: boolean) → List<IColumn> | Creates a copy of the specified template column and inserts it at the specified index. |
removeAt(firstColumnIndex: int, withAttachedRows: boolean) | Removes the column at the specified index. |
asICollection() → List<IColumn> | Returns the collection as a {@link List}. |
asIEnumerable() → Iterable<IColumn> | Returns the collection as an {@link Iterable}. |