Interface ITableColumns
public interface ITableColumns
Represents a collection of all the
ITableColumn
objects in thespecified
ITable
object. Each ITableColumn object represents a columnin the table.
-
Method Summary
Adds a new column to the table object.
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.
int
Returns the number of objects in the collection.
-
Method Details
-
getCount
int getCount()
Returns the number of objects in the collection.
-
get
- Parameters:
index
- The index.
-
get
- Parameters:
name
- The column name.
-
add
Adds a new column to the table object. Returns the
ITableColumn
object.
-
add
Adds a new column to the table object. Returns the
ITableColumn
object.
- Parameters:
position
- Specifies the relative position ofthe new column that starts at 0. The previous column at this position is shifted outward.
-
add
void add(int position,
int count)
Adds new column(s) to the table object.
- Parameters:
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).
-
delete
void delete(int position,
int count)
Deletes the column(s) of data in the table.
- Parameters:
position
- 0 based Integer. Specifies the relative position of the deleted column(s).
count
- Specifies the count of the deleted column(s).