Help Center

LeftColproperty

Returns or sets the left-most visible non fixed column in the MSHFlexGrid.

Windowspropertydoc-orphan
No implementation located. This member is documented, but the source scan found no matching declaration. It is likely declared in a header this scan does not resolve, or provided by a macro.

Syntax

PROPERTY LeftCol () AS LONG
PROPERTY LeftCol (BYVAL nCol AS LONG)

Parameters

NameDescription
nColA Long value that specifies the left-most column.

Description

Returns or sets the left-most visible non fixed column in the grid.

Remarks

When you assign a value to LeftCol, the grid scrolls horizontally so that the specified column index is displayed immediately to the right of any fixed columns.

Examples

' Scroll horizontally to show column 9 grid.LeftCol = 9

' Reset horizontal scroll to the first scrollable column grid.LeftCol = grid.FixedCols

Reference