Skip to main content

IGrid.SelectRows(IEnumerable<Int32>, Boolean) Method

Selects or deselects rows with the specified visible indexes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

void SelectRows(
    IEnumerable<int> visibleIndexes,
    bool selected = true
)

Parameters

Name Type Description
visibleIndexes IEnumerable<Int32>

Specifies a collection of visible indexes.

Optional Parameters

Name Type Default Description
selected Boolean True

true to select rows; false to deselect rows.

Remarks

Refer to the SelectRows method description for more information and an example.

See Also