Uses of Class
org.odftoolkit.odfdom.doc.table.OdfTable
Packages that use OdfTable
Package
Description
The "Document Layer" exist for usability reasons, it gives a feature based view on the document model.
Provide convenient methods to manipulate table in ODF text and spreadsheet document.
-
Uses of OdfTable in org.odftoolkit.odfdom.doc
Methods in org.odftoolkit.odfdom.doc that return OdfTableModifier and TypeMethodDescriptionOdfDocument.getTableByName(String name) Return an instance of table feature with the specific table name.Methods in org.odftoolkit.odfdom.doc that return types with arguments of type OdfTableModifier and TypeMethodDescriptionOdfSpreadsheetDocument.getSpreadsheetTables()Return a list of table features in this document.OdfDocument.getTableList()Deprecated.OdfDocument.getTableList(boolean doRecursiveSearch) Return a list of table features in this document. -
Uses of OdfTable in org.odftoolkit.odfdom.doc.table
Methods in org.odftoolkit.odfdom.doc.table that return OdfTableModifier and TypeMethodDescriptionstatic OdfTableOdfTable.getInstance(TableTableElement odfElement) Get a table feature instance by an instance ofTableTableElement.OdfTableCell.getTable()Get an instance of table feature which contains this cell.OdfTableCellRange.getTable()Get theOdfTableinstance who contains this cell range.OdfTableColumn.getTable()Get owner table of the current column.OdfTableRow.getTable()Get owner table of the current row.static OdfTableOdfTable.newTable(OdfDocument document) Construct theOdfTablefeature.static OdfTableOdfTable.newTable(OdfDocument document, int numRows, int numCols) Construct theOdfTablefeature with a specified row number and column number.static OdfTableOdfTable.newTable(OdfDocument document, int numRows, int numCols, int headerRowNumber, int headerColumnNumber) Construct the OdfTable feature with a specified 2 dimension array as the data of this table.static OdfTableOdfTable.newTable(OdfDocument document, String[] rowLabel, String[] columnLabel, double[][] data) Construct the OdfTable feature with a specified 2 dimension array as the data of this table.static OdfTableOdfTable.newTable(OdfDocument document, String[] rowLabel, String[] columnLabel, String[][] data) Construct the OdfTable feature with a specified 2 dimension array as the data of this table.static OdfTableOdfTable.newTable(OdfElement tableParent) Construct theOdfTablefeature.static OdfTableOdfTable.newTable(OdfElement tableParent, int numRows, int numCols) Construct theOdfTablefeature with a specified row number and column number.static OdfTableOdfTable.newTable(OdfElement tableParent, int numRows, int numCols, int headerRowNumber, int headerColumnNumber) Construct theOdfTablefeature with a specified row number, column number, header row number, header column number.static OdfTableOdfTable.newTable(OdfElement tableParent, String[] rowLabel, String[] columnLabel, double[][] data) Construct the OdfTable feature with a specified 2 dimension array as the data of this table.static OdfTableOdfTable.newTable(OdfElement tableParent, String[] rowLabel, String[] columnLabel, String[][] data) Construct the OdfTable feature with a specified 2 dimension array as the data of this table. -
Uses of OdfTable in org.odftoolkit.odfdom.dom
Methods in org.odftoolkit.odfdom.dom that return types with arguments of type OdfTable