Search
Table.GetColType Method
See Also
 



Gets the type of a column.

 Syntax

VB6  Copy Code

Public Function GetColType( _
    ByVal col As Long _
) As EColumnType

C++  Copy Code

public:
EColumnType GetColType (
    int col
)

 Parameters

col
The column whose type to return.

 Return Value

A member of the EColumnType enumeration.

 Remarks

Returns the type of the specified column. Possible values are:

  • ctFixedWidth - the column is not resized if table size changes;
  • ctAutoWidth - the column is resized when table size changes;

 See Also