MultipleSelection Property
See Also

Description
Specifies whether multiple GridRows can be selected at the same time in the GridControl.
Property Type
Read-write property
Syntax (Visual Basic)
Public Property MultipleSelection() As Boolean
Remarks
If True, multiple rows can be selected at the same time.
If False, only a single row can be selected at the same time.
A GridRow is selected when the user clicks on the row, or when the add method is used. Selected rows will appear shaded.
You can select multiple rows at a time by holding down the Shift or Ctrl keys while you click on the rows.
Selected rows can be retrieved through the GridControl's collection of SelectedRows.
Example
Allowing Multiple Row Selection (Visual Basic)
This sample illustrates how to allow multiple row selection in the GridControl.
' This will allow multiple GridRow objects to be selected at the same time
' in the GridControl.
wndGridControl.MultipleSelection = True
See Also
Copyright (c) 1998-2024 Codejock Technologies. All rights reserved.