Package com.grapecity.documents.excel
Interface ITableRows
-
Method Summary
Modifier and TypeMethodDescriptionadd()Adds a new row to the table object.add(int position) Adds a new row to the table object.voidadd(int position, int count) Adds new row(s) to the table object.voiddelete(int position, int count) Deletes the cells of the table row(s) and shifts upward any remaining cells below the deleted row(s).get(int index) Gets theITableRowat the specified index.intgetCount()Returns the number of objects in the collection.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
get
Gets theITableRowat the specified index.- Parameters:
index- The index.
-
getCount
int getCount()Returns the number of objects in the collection. -
add
ITableRow add()Adds a new row to the table object. Returns theITableRowobject. -
add
Adds a new row to the table object. Returns theITableRowobject.- Parameters:
position- 0 based Integer. Specifies the relative position of the new row.
-
add
void add(int position, int count) Adds new row(s) to the table object.- Parameters:
position- 0 based Integer. Specifies the relative position of the new row(s).count- Specifies the count of the new row(s).
-
delete
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).- Parameters:
position- 0 based Integer. Specifies the relative position of the deleted row(s).count- Specifies the count of the deleted row(s).
-