|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object com.zhuozhengsoft.pageoffice.wordreader.Table
public class Table
Table 类,代表一个Word表格。
Table表示一个Word表格,用来读取Word表格中的数据。您只能通过调用 DataRegion.openTable 方法获得 Table 对象。
方法摘要 | |
---|---|
java.util.ArrayList<Cell> |
getCells()
获取 Table 里包含的 Cell 集合。 |
int |
getColumnsCount()
获取表格的列数。 |
int |
getIndex()
获取表格的索引。 |
int |
getRowsCount()
获取表格的行数。 |
Cell |
openCellRC(int row,
int col)
打开指定的单元格,并返回 Cell 对象。 |
从类 java.lang.Object 继承的方法 |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
方法详细信息 |
---|
public int getIndex()
这里的 Index 是Word中定义的表格索引概念。Index值的意思是指当前表格在 DataRegion 中包含的所有表格中的排序位置。
Index的值从"1"开始。
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
- 行号。从"1"开始。col
- 列号。从"1"开始。
java.lang.Exception
|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |