IColumn

Overview

IColumn is a interface in Aspose.Slides FOSS for Java. Inherits from: ICellCollection, IBulkTextFormattable.

Represents a column in a table.

This interface provides 14 methods for working with IColumn objects in Java programs. Available methods include: asICollection, asIEnumerable, asIPresentationComponent, asISlideComponent, get, getAsIBulkTextFormattable, getAsICellCollection, getColumnFormat, getPresentation, getSlide, getWidth, setTextFormat, and 2 additional methods. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: asIBulkTextFormattable, asICellCollection, columnFormat, presentation, slide, width.

Properties

NameTypeAccessDescription
widthdoubleReadReturns or sets the width of a column.
asICellCollectionICellCollectionReadAllows to get base ICellCollection interface.
asIBulkTextFormattableIBulkTextFormattableReadAllows to get base IBulkTextFormattable interface.
columnFormatIColumnFormatReadReturns the ColumnFormat object that contains formatting properties for this column.
slideIBaseSlideReadReturns the parent slide.
presentationIPresentationReadReturns the presentation containing this component.

Methods

SignatureDescription
getWidth()doubleReturns or sets the width of a column.
setWidth(value: double)Sets the width of a column.
getAsICellCollection()ICellCollectionAllows to get base ICellCollection interface.
getAsIBulkTextFormattable()IBulkTextFormattableAllows to get base IBulkTextFormattable interface.
getColumnFormat()IColumnFormatReturns the ColumnFormat object that contains formatting properties for this column.
get(index: int)ICellGets the cell at the specified index.
size()intReturns the number of cells in the collection.
asISlideComponent()ISlideComponentReturns the base {@link ISlideComponent} interface.
asICollection()List<ICell>Returns the collection as a {@link List}.
asIEnumerable()Iterable<ICell>Returns the collection as an {@link Iterable}.
getSlide()IBaseSlideReturns the parent slide.
asIPresentationComponent()IPresentationComponentReturns the base {@link IPresentationComponent} interface.
getPresentation()IPresentationReturns the presentation containing this component.
setTextFormat(source: Object)Sets the text format for all child text elements.

See Also