com.mindoo.remote.api.symphony.presentation
Interface IRemoteTables


public interface IRemoteTables

This class represents a collection of tables.

Access

To get all the tables of a page, use the Tables property in the Shapes class.


Method Summary
 IRemoteTableShape add(int row, int column, int left, int top, int width, int height)
          This method creates a table.
 int getCount()
          This property represents the number of tables.
 IRemoteTableShape item(int index)
          This method returns a table according to the index.
 

Method Detail

getCount

int getCount()
             throws RemoteEclipseAPIException
This property represents the number of tables.

Returns:
count
Throws:
RemoteEclipseAPIException

item

IRemoteTableShape item(int index)
                       throws RemoteEclipseAPIException
This method returns a table according to the index.

Parameters:
index - Specifies the index of the table, starting at 1.
Returns:
A TableShape object that represents a table.
Throws:
RemoteEclipseAPIException

add

IRemoteTableShape add(int row,
                      int column,
                      int left,
                      int top,
                      int width,
                      int height)
                      throws RemoteEclipseAPIException
This method creates a table.

Parameters:
row - Specifies the row number of the table.
column - Specifies the column number of the table.
left - Specifies the left position at the top left of the page in 1/100th mm.
top - Specifies the top position at the top left of the page in 1/100th mm.
width - Specifies the width of the table in 1/100th mm.
height - Specifies the height of the table in 1/100th mm.
Returns:
A TableShape object that represents a table object.
Throws:
RemoteEclipseAPIException