Search
Table.DeleteColumn Method
See Also
 



Deletes the specified column of the table.

 Syntax

VB6  Copy Code

Public Sub DeleteColumn( _
    ByVal col As Long _
)

C++  Copy Code

public:
void DeleteColumn (
    int col
)

 Parameters

col
The index of the column to delete.

 Remarks

Deletes the column with the index specified as argument. The table's extents are not changed by this operation; you can use the SetRect method to change them.

 See Also