|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IRemoteTextTableRows
This class is a collection of TextTableRow objects representing all the rows in a table.
Access
To get all the rows of a table, use the Rows property in the TextTable class.
Usage
TextTableRows provides access to rows, and provides methods to insert and remove rows.
Method Summary | |
---|---|
IRemoteTextTableRow |
add()
This method inserts one or more rows. |
IRemoteTextTableRow |
add(int rowIndex)
This method inserts one or more rows. |
IRemoteTextTableRow |
add(int rowIndex,
int count)
This method inserts one or more rows. |
IRemoteSymphonyApplication |
getApplication()
This property represents the Lotus Symphony application. |
int |
getCount()
This property returns the number of rows in a table. |
int |
getHeight()
This property gets the height of the first row and sets the height to all rows, its unit is 1/100th mm. |
boolean |
isAutoHeight()
This property gets the AutoHeight property of the first row and sets the AutoHeight property of all rows. |
IRemoteTextTableRow |
item(int index)
This method gets a row of the table according to an index. |
void |
remove()
This method removes one or more rows in a table. |
void |
remove(int beginIdx)
This method removes one or more rows in a table. |
void |
remove(int beginIdx,
int count)
This method removes one or more rows in a table. |
void |
setAutoHeight(boolean autoHeight)
This property gets the AutoHeight property of the first row and sets the AutoHeight property of all rows. |
void |
setHeight(int height)
This property gets the height of the first row and sets the height to all rows, its unit is 1/100th mm. |
Method Detail |
---|
IRemoteSymphonyApplication getApplication() throws RemoteEclipseAPIException
RemoteEclipseAPIException
boolean isAutoHeight() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void setAutoHeight(boolean autoHeight) throws RemoteEclipseAPIException
autoHeight
-
RemoteEclipseAPIException
int getCount() throws RemoteEclipseAPIException
RemoteEclipseAPIException
int getHeight() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void setHeight(int height) throws RemoteEclipseAPIException
height
-
RemoteEclipseAPIException
IRemoteTextTableRow add(int rowIndex, int count) throws RemoteEclipseAPIException
rowIndex
- Specifies the index of a row before which new rows are inserted. The range of the index is from 1 to row number +1. If the index is row number +1, this method insert several rows specified by the count parameter after the last row.count
- Specifies the number of rows to be added. The default value is 1. If the number of rows is out of bounds, this method throws an exception.
RemoteEclipseAPIException
IRemoteTextTableRow add(int rowIndex) throws RemoteEclipseAPIException
rowIndex
- Specifies the index of a row before which new rows are inserted. The range of the index is from 1 to row number +1. If the index is row number +1, this method insert several rows specified by the count parameter after the last row.
RemoteEclipseAPIException
IRemoteTextTableRow add() throws RemoteEclipseAPIException
RemoteEclipseAPIException
IRemoteTextTableRow item(int index) throws RemoteEclipseAPIException
index
-
RemoteEclipseAPIException
void remove() throws RemoteEclipseAPIException
RemoteEclipseAPIException
void remove(int beginIdx) throws RemoteEclipseAPIException
beginIdx
- Specifies the index of the first row to be removed, starting at 1.
RemoteEclipseAPIException
void remove(int beginIdx, int count) throws RemoteEclipseAPIException
beginIdx
- Specifies the index of the first row to be removed, starting at 1.count
- Specifies the number of rows to be removed. The default value is 1. If the number of rows is out of bounds, this method throws an exception.
RemoteEclipseAPIException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |