Help Center

AllowBigSelectionproperty

Returns or sets a value that determines whether clicking on a column or row header should cause the entire column or row to be selected.

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 AllowBigSelection () AS BOOLEAN
PROPERTY AllowBigSelection (BYVAL bAllowBigSelection AS BOOLEAN = TRUE)

Parameters

NameDescription
bAllowBigSelectionTrue: Default. When the user clicks the header, the entire column or row is selected. False: When the user clicks the header, only the header is selected.

Description

Returns or sets a value that determines whether clicking on a column or row header should cause the entire column or row to be selected.

Example

' Disable the ability to select entire rows/columns via headers grid.AllowBigSelection = False

' Allow users to select free-form ranges in the data area grid.SelectionMode = flexSelectionFree

Reference