Search
Table.SetColWidth Method
See Also
 



Sets the width of the specified column.

 Syntax

VB6  Copy Code

Public Sub SetColWidth( _
    ByVal col As Long, _
    ByVal newVal As Long _
)

C++  Copy Code

public:
void SetColWidth (
    int col,
    int newVal
)

 Parameters

col
The index of the column whose width to set.
newVal

The new column width.

 Remarks

Changes the width of the column specified as an argument.

 See Also