Package | Description |
---|---|
org.odftoolkit.simple.table |
Provide convenient methods to manipulate table in ODF text and spreadsheet document.
|
Modifier and Type | Method and Description |
---|---|
Column |
Table.appendColumn()
Append a column at the end of the table.
|
Column |
Table.getColumnByIndex(int index)
Get the column at the specified index.
|
static Column |
Column.getInstance(TableTableColumnElement colElement)
Get the
Column instance from the
TableTableColumnElement instance. |
Column |
Column.getNextColumn()
Get the next column of the current column.
|
Column |
Column.getPreviousColumn()
Get the previous column of the current column.
|
Column |
Cell.getTableColumn()
Get the instance of table column feature which contains this cell.
|
Modifier and Type | Method and Description |
---|---|
List<Column> |
Table.appendColumns(int columnCount)
Append a specific number of columns to the right of the table.
|
Iterator<Column> |
Table.getColumnIterator()
Return an Iterator of the column in this table.
|
List<Column> |
Table.getColumnList()
Return a list of columns in the current table.
|
List<Column> |
Table.insertColumnsBefore(int index,
int columnCount)
Insert a specific number of columns before the column whose index is
index . |
Copyright © 2010-2014 The Apache Software Foundation. All Rights Reserved.