| Modifier and Type | Method and Description |
|---|---|
ITableRow |
add()
Adds a new row to the table object.
|
ITableRow |
add(int position)
Adds a new row to the table object.
|
void |
add(int position,
int count)
Adds new row(s) to the table object.
|
void |
delete(int position,
int count)
Deletes the cells of the table row(s) and shifts upward any remaining cells below the deleted row(s).
|
ITableRow |
get(int index)
Gets the
ITableRow at the specified index. |
int |
getCount()
Returns the number of objects in the collection.
|
ITableRow get(int index)
ITableRow at the specified index.index - The index.int getCount()
ITableRow add(int position)
ITableRow object.position - 0 based Integer. Specifies the relative position of the new row.void add(int position,
int count)
position - 0 based Integer. Specifies the relative position of the new row(s).count - Specifies the count of the new row(s).void delete(int position,
int count)
position - 0 based Integer. Specifies the relative position of the deleted row(s).count - Specifies the count of the deleted row(s).