AllowBigSelection Property (ModHFGrid)
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.
Returns or sets a value that determines whether clicking a column or row header should cause the entire column or row to be selected.
Syntax
object.AllowBigSelection [=Boolean]
The AllowBigSelection property syntax has these parts:
Part | Description |
---|---|
object | An object expression that evaluates to the ModHFGrid Control object. |
Boolean | A Boolean expression that specifies whether an entire column or row is selected when the header is clicked. |
Settings
The settings for Boolean are:
Setting | Description |
---|---|
True | 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. |
Example
The following code example makes it possible for an entire column or row to be selected when the user clicks the header.
Sub Form1_Load ()
ModHFGrid1.AllowBigSelection =True
End Sub