|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.acesoft.aceoffix.wordreader.Table
public class Table
Table class represents a Word table.
Representing a Word table, Table class is used to read the data in the Word table. You can only call the DataRegion.openTable method to get the Table object.
Method Summary | |
---|---|
java.util.ArrayList<Cell> |
getCells()
Gets the Cell collection in the current Table. |
int |
getColumnsCount()
Gets the number of columns in the current table. |
int |
getIndex()
Gets the index of the table. |
int |
getRowsCount()
Gets the number of rows in the current table. |
Cell |
openCellRC(int row,
int col)
Opens the specified cell and returns a Cell object. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public int getIndex()
The index of the table is defined in Microsoft Word. The index number represents the position of the table in the Word document.
The index is a 1-based index.
public int getColumnsCount()
public int getRowsCount()
public java.util.ArrayList<Cell> getCells() throws java.io.IOException, java.lang.Exception
java.io.IOException
java.lang.Exception
public Cell openCellRC(int row, int col) throws java.lang.Exception
row
- The row number. Starting from "1".col
- The column number. Starting from "1".
java.lang.Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |