Search
Table.InsertColumn Method
See Also
 



Inserts a new column into the table.

 Syntax

VB6  Copy Code

Public Sub InsertColumn( _
    ByVal col As Long _
)

C++  Copy Code

public:
void InsertColumn (
    int col
)

 Parameters

col
Specifies at which position the column is to be inserted.

 Remarks

Inserts a new column in a table at the specified position. The table's extents are not changed by this operation; you can use the SetRect method to change them.

 See Also