Skip to main content

DataControlBase.SelectRange(Int32, Int32) Method

Selects multiple items, while preserving the current selection (if any).

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public void SelectRange(
    int startRowHandle,
    int endRowHandle
)

Parameters

Name Type Description
startRowHandle Int32

An integer value specifying the item handle at which the selection starts.

endRowHandle Int32

An integer value specifying the item handle at which the selection ends.

Remarks

The SelectRange method adds the specified range of data rows/cards to the current selection. To clear the current selection before selecting, call the DataControlBase.UnselectAll method.

The SelectRange method does nothing in the cases listed below:

  • Multiple item selection isn’t allowed.
  • The specified item handles are invalid.
  • The specified item handles point to hidden items that reside within collapsed groups.
See Also