com.zhuozhengsoft.pageoffice.wordreader
类 Cell

java.lang.Object
  继承者 com.zhuozhengsoft.pageoffice.wordreader.Cell

public class Cell
extends java.lang.Object

Cell 类,代表Word表格中的一个单元格。

Cell表示Word表格中的一个单元格,用来读取Word表格中单元格的数据。您只能通过调用 Table.openCellRC(int, int) 方法获取 Cell 对象。

版本:
2.0
作者:
北京卓正志远软件有限公司

方法摘要
 int getColumnIndex()
          获取单元格的列索引。
 int getRowIndex()
          获取单元格的行索引。
 java.util.ArrayList<Shape> getShapes()
          获取 Cell 里包含的 Shape 集合。
 java.lang.String getValue()
          获取 Cell 的值。
 Shape openShape(int index)
          打开指定的图形,并返回 Shape 对象。
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

方法详细信息

getShapes

public java.util.ArrayList<Shape> getShapes()
                                     throws java.io.IOException,
                                            java.lang.Exception
获取 Cell 里包含的 Shape 集合。

抛出:
java.io.IOException
java.lang.Exception

getValue

public java.lang.String getValue()
                          throws java.io.IOException
获取 Cell 的值。

抛出:
java.io.IOException

getRowIndex

public int getRowIndex()
获取单元格的行索引。RowIndex的值从"1"开始。


getColumnIndex

public int getColumnIndex()
获取单元格的列索引。ColumnIndex的值从"1"开始。


openShape

public Shape openShape(int index)
                throws java.lang.Exception
打开指定的图形,并返回 Shape 对象。

参数:
index - Shape的索引,和Word中定义的概念完全一致。从"1"开始。
返回:
返回 Shape 对象。
抛出:
java.lang.Exception