Selecting Different Parts of a Table

A number of convenience methods can be used to select some of the more common collections of cells such as columns, rows, a rectangular portion of the table and the whole table. If there are merged cells in the region selected, these are also included.

To select a column use:

java.util.List selectColumn(int column)

To select a row use:

java.util.List selectRow(int row)

To select a rectangular portion of the table use:

java.util.List selectRectangle(int row, int column, int rowCount, int columnCount)

To select the whole table use:

java.util.List selectTable()

Page generated: 2008-01-18 02:53:28 GMT TonicPoint Builder Developer's Guide -- Version 2.3