Package org.odftoolkit.odfdom.doc.table


package org.odftoolkit.odfdom.doc.table
Provide convenient methods to manipulate table in ODF text and spreadsheet document.

Table is a common used feature in ODF. This package provides convenient methods to manipulate table feature and its child features, such as row, column, cell, cell range.

OdfTable represents table in ODF. It provides methods to new a table, delete a table, get rows, columns, and cells of a table, new a cell range, insert and delete rows and columns, and so on.

OdfTableRow and OdfTableColumn represents row and column in ODF. It provides methods to get cells, get next and previous row and column, set properties of rows and columns, and so on.

OdfTableCell represents cell in ODF. It provides many methods to set the properties and values of a cell, such as horizontal alignment, vertical alignment, value, formula, value format, and so on.

OdfTableRange represents a range of cells in ODF. It provides a method to merge a range of cells to a single cell, and some other methods too.

  • Classes
    Class
    Description
    OdfTable represents the table feature in ODF spreadsheet and text documents.
    OdfTableCell represents table cell feature in ODF document.
    OdfTableCellRange represent a rang of cells that are adjacent with each other
    OdfTableColumn represents table column feature in ODF document.
    OdfTableRow represents table row feature in ODF document.