ITable
Overview
ITable is a interface in Aspose.Slides FOSS for Java.
Inherits from: IGraphicalObject, IBulkTextFormattable.
Represents a table on a slide.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
rows | IRowCollection | Read | Returns the collection of rows. |
columns | IColumnCollection | Read | Returns the collection of columns. |
tableFormat | ITableFormat | Read | Returns the table formatting. |
stylePreset | TableStylePreset | Read | Returns the table style preset. |
rightToLeft | boolean | Read | Determines whether the table has right-to-left reading order. |
firstRow | boolean | Read | Determines whether the first row has special formatting. |
firstCol | boolean | Read | Determines whether the first column has special formatting. |
lastRow | boolean | Read | Determines whether the last row has special formatting. |
lastCol | boolean | Read | Determines whether the last column has special formatting. |
horizontalBanding | boolean | Read | Determines whether the table has horizontal banding. |
verticalBanding | boolean | Read | Determines whether the table has vertical banding. |
Methods
| Signature | Description |
|---|---|
getRows() → IRowCollection | Returns the collection of rows. |
getColumns() → IColumnCollection | Returns the collection of columns. |
getTableFormat() → ITableFormat | Returns the table formatting. |
getStylePreset() → TableStylePreset | Returns the table style preset. |
setStylePreset(value: TableStylePreset) | Sets the table style preset. |
isRightToLeft() → boolean | Determines whether the table has right-to-left reading order. |
setRightToLeft(value: boolean) | Sets the right-to-left reading order. |
isFirstRow() → boolean | Determines whether the first row has special formatting. |
setFirstRow(value: boolean) | Sets whether the first row has special formatting. |
isFirstCol() → boolean | Determines whether the first column has special formatting. |
setFirstCol(value: boolean) | Sets whether the first column has special formatting. |
isLastRow() → boolean | Determines whether the last row has special formatting. |
setLastRow(value: boolean) | Sets whether the last row has special formatting. |
isLastCol() → boolean | Determines whether the last column has special formatting. |
setLastCol(value: boolean) | Sets whether the last column has special formatting. |
isHorizontalBanding() → boolean | Determines whether the table has horizontal banding. |
setHorizontalBanding(value: boolean) | Sets whether the table has horizontal banding. |
isVerticalBanding() → boolean | Determines whether the table has vertical banding. |
setVerticalBanding(value: boolean) | Sets whether the table has vertical banding. |
mergeCells(cell1: ICell, cell2: ICell, allowSplitting: boolean) → ICell | Merges neighbouring cells. |
asIGraphicalObject() → IGraphicalObject | Returns this table as an {@link IGraphicalObject}. |
asIBulkTextFormattable() → IBulkTextFormattable | Returns this table as an {@link IBulkTextFormattable}. |