public interface ITableColumns
ITableColumn objects in the
specified ITable object. Each ITableColumn object represents a column
in the table.| Modifier and Type | Method and Description |
|---|---|
ITableColumn |
add()
Adds a new column to the table object.
|
ITableColumn |
add(int position)
Adds a new column to the table object.
|
void |
add(int position,
int count)
Adds new column(s) to the table object.
|
void |
delete(int position,
int count)
Deletes the column(s) of data in the table.
|
ITableColumn |
get(int index)
Gets the
ITableColumn at the specified index. |
ITableColumn |
get(java.lang.String name)
Gets the
ITableColumn at the specified column name. |
int |
getCount()
Returns the number of objects in the collection.
|
int getCount()
ITableColumn get(int index)
ITableColumn at the specified index.index - The index.ITableColumn get(java.lang.String name)
ITableColumn at the specified column name.name - The column name.ITableColumn add()
ITableColumn
object.ITableColumn add(int position)
ITableColumn
object.position - Specifies the relative position of
the new column that starts at 0. The previous column at this
position is shifted outward.void add(int position,
int count)
position - 0 based Integer. Specifies the relative position of the new column(s). The previous column at this position is shifted outward.count - Specifies the count of the new column(s).void delete(int position,
int count)
position - 0 based Integer. Specifies the relative position of the deleted column(s).count - Specifies the count of the deleted column(s).