com.acesoft.aceoffix
Class WordResTable

java.lang.Object
  extended by com.acesoft.aceoffix.WordResTable

public class WordResTable
extends java.lang.Object

Represents a table. Fills data into table and controls behavior of table. You can only use the WordResponse.openTable method to obtain a WordResTable object.

Version:
3.0
Author:
Acesoft Corporation

Method Summary
 int getIndex()
          Returns the index of the table.
 WordResCell openCellRC(int row, int col)
          Opens the specified cell and returns a WordResCell object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getIndex

public int getIndex()
Returns the index of the table. 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.


openCellRC

public WordResCell openCellRC(int row,
                              int col)
Opens the specified cell and returns a WordResCell object.

If the specified cell exists, this method will return a WordResCell object.

Parameters:
row - The index of row.
col - The index of column.