Interface ITableColumns
public interface ITableColumns
-
Method Summary
void
add(int position,
int count)
void
delete(int position,
int count)
int
-
Method Details
-
getCount
int getCount()
返回集合中的对象数量。
-
get
- Parameters:
index
- 索引。
-
get
- Parameters:
name
- 列名。
-
-
add
- Parameters:
position
- 指定新列的相对位置,从0开始。此位置上的前一个列将被向外推移。
-
add
void add(int position,
int count)
向表格对象添加新列。
- Parameters:
position
- 基于零的整数。指定新列的相对位置。此位置之前的列将向外移动。
count
- 指定新列的数量。
-
delete
void delete(int position,
int count)
删除表中的列数据。
- Parameters:
position
- 基于零的整数。指定被删除列的相对位置。
count
- 指定被删除列的数量。