IColumnCollection — Aspose.Slides FOSS Java API Reference
IColumnCollection — Represents collection of columns in a table.
Package: org.aspose.slides.foss
Methods
| Method | Returns | Description |
|---|---|---|
get(int index) | IColumn | Gets the column at the specified index. |
size() | int | Returns the number of columns in the collection. |
addClone(IColumn templ, boolean withAttachedColumns) | List<IColumn> | Creates a copy of the specified template column and adds it to the end. |
insertClone(int index, IColumn templ, boolean withAttachedColumns) | List<IColumn> | Creates a copy of the specified template column and inserts it at the specified index. |
removeAt(int firstColumnIndex, boolean withAttachedRows) | void | Removes the column at the specified index. |
asICollection() | List<IColumn> | Returns the collection as a List. |
asIEnumerable() | Iterable<IColumn> | Returns the collection as an Iterable. |