接口 ITableRows
-
方法概要
修饰符和类型方法说明add()
Adds a new row to the table object.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).get
(int index) Gets theITableRow
at the specified index.int
getCount()
Returns the number of objects in the collection.从接口继承的方法 java.lang.Iterable
forEach, iterator, spliterator
-
方法详细资料
-
get
Gets theITableRow
at the specified index.- 参数:
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 theITableRow
object. -
add
Adds a new row to the table object. Returns theITableRow
object.- 参数:
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.- 参数:
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).- 参数:
position
- 0 based Integer. Specifies the relative position of the deleted row(s).count
- Specifies the count of the deleted row(s).
-