ITable

Overview

ITable is a interface in Aspose.Slides FOSS for Java. Inherits from: IGraphicalObject, IBulkTextFormattable.

Represents a table on a slide.

Properties

NameTypeAccessDescription
rowsIRowCollectionReadReturns the collection of rows.
columnsIColumnCollectionReadReturns the collection of columns.
tableFormatITableFormatReadReturns the table formatting.
stylePresetTableStylePresetReadReturns the table style preset.
rightToLeftbooleanReadDetermines whether the table has right-to-left reading order.
firstRowbooleanReadDetermines whether the first row has special formatting.
firstColbooleanReadDetermines whether the first column has special formatting.
lastRowbooleanReadDetermines whether the last row has special formatting.
lastColbooleanReadDetermines whether the last column has special formatting.
horizontalBandingbooleanReadDetermines whether the table has horizontal banding.
verticalBandingbooleanReadDetermines whether the table has vertical banding.

Methods

SignatureDescription
getRows()IRowCollectionReturns the collection of rows.
getColumns()IColumnCollectionReturns the collection of columns.
getTableFormat()ITableFormatReturns the table formatting.
getStylePreset()TableStylePresetReturns the table style preset.
setStylePreset(value: TableStylePreset)Sets the table style preset.
isRightToLeft()booleanDetermines whether the table has right-to-left reading order.
setRightToLeft(value: boolean)Sets the right-to-left reading order.
isFirstRow()booleanDetermines whether the first row has special formatting.
setFirstRow(value: boolean)Sets whether the first row has special formatting.
isFirstCol()booleanDetermines whether the first column has special formatting.
setFirstCol(value: boolean)Sets whether the first column has special formatting.
isLastRow()booleanDetermines whether the last row has special formatting.
setLastRow(value: boolean)Sets whether the last row has special formatting.
isLastCol()booleanDetermines whether the last column has special formatting.
setLastCol(value: boolean)Sets whether the last column has special formatting.
isHorizontalBanding()booleanDetermines whether the table has horizontal banding.
setHorizontalBanding(value: boolean)Sets whether the table has horizontal banding.
isVerticalBanding()booleanDetermines whether the table has vertical banding.
setVerticalBanding(value: boolean)Sets whether the table has vertical banding.
mergeCells(cell1: ICell, cell2: ICell, allowSplitting: boolean)ICellMerges neighbouring cells.
asIGraphicalObject()IGraphicalObjectReturns this table as an {@link IGraphicalObject}.
asIBulkTextFormattable()IBulkTextFormattableReturns this table as an {@link IBulkTextFormattable}.

See Also