com.mindoo.remote.api.symphony.document
Interface IRemoteTextTableCells


public interface IRemoteTextTableCells

This class represents a collection of all the cells in a table.

TextTableCells provides access to cells of the table.


Method Summary
 IRemoteSymphonyApplication getApplication()
          This property represents the Lotus Symphony application.
 int getCount()
          This property returns the number of cells in a table.
 IRemoteTextTableCell item(int index)
          This method gets a cell in a table according to an index.
 

Method Detail

getApplication

IRemoteSymphonyApplication getApplication()
                                          throws RemoteEclipseAPIException
This property represents the Lotus Symphony application.

Returns:
application
Throws:
RemoteEclipseAPIException

getCount

int getCount()
             throws RemoteEclipseAPIException
This property returns the number of cells in a table.

Returns:
count
Throws:
RemoteEclipseAPIException

item

IRemoteTextTableCell item(int index)
                          throws RemoteEclipseAPIException
This method gets a cell in a table according to an index.

If the index is out of bounds, this method throws an exception.

Parameters:
index - Specifies the index of the cell, the index sequence is from the beginning to the end of a row and then to the beginning of the next row, starting at 1.
Returns:
A TextTableCell object that represents a cell.
Throws:
RemoteEclipseAPIException