[]
Adds a new column to the table object. Returns the ITableColumn object.
ITableColumn Add(int position = -1)
Function Add(Optional position As Integer = -1) As ITableColumn
Type | Name | Description |
---|---|---|
int | position | Optional Object, the position. Specifies the relative position of the new column that starts at 0. The previous column at this position is shifted outward. |
Type | Description |
---|---|
ITableColumn | Returns ITableColumnThe new column. |
Adds new column(s) to the table object.
void Add(int position, int count)
Sub Add(position As Integer, count As Integer)