IColumnCollection

IColumnCollection — Aspose.Slides FOSS Java API Reference

IColumnCollection — Represents collection of columns in a table.

Package: org.aspose.slides.foss


Methods

MethodReturnsDescription
get(int index)IColumnGets the column at the specified index.
size()intReturns 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)voidRemoves the column at the specified index.
asICollection()List<IColumn>Returns the collection as a List.
asIEnumerable()Iterable<IColumn>Returns the collection as an Iterable.

See Also