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