Resizes a column range to fit their visible content.
Syntax
'Declaration
Public Sub AutoSizeColumns( _
ByVal As Integer, _
ByVal As Integer, _
Optional ByVal As Boolean _
)
'Usage
Dim instance As FlexGrid
Dim startCol As Integer
Dim endCol As Integer
Dim header As Boolean
instance.AutoSizeColumns(startCol, endCol, header)
public void AutoSizeColumns(
int ,
int ,
bool
)
Parameters
- startCol
- Index of the first column to resize.
- endCol
- Index of the last column to resize.
- header
- Whether the column indexes refers to regular or header row columns.
See Also