[]
        
(Showing Draft Content)

C1.Blazor.Grid.FlexGrid.Select

Select Method

Select(int, int, bool, bool)

Selects a given cell and optionally scrolls it into view.

Declaration
public void Select(int row, int column, bool scrollIntoView = true, bool hideSelectionAdorners = false)
Parameters
Type Name Description
int row

The row to select.

int column

The column to select.

bool scrollIntoView

Whether to scroll the new selection into view.

bool hideSelectionAdorners

Whether the selection adorners are hidden.

Select(GridCellRange, bool, bool)

Selects a given cell and optionally scrolls it into view.

Declaration
public void Select(GridCellRange range, bool scrollIntoView, bool hideSelectionAdorners = false)
Parameters
Type Name Description
GridCellRange range

GridCellRange to select.

bool scrollIntoView

Whether to scroll the new selection into view.

bool hideSelectionAdorners

Whether the selection adorners are hidden.

Select(IEnumerable<GridCellRange>, bool, bool)

Selects a collection of cell ranges and optionally scrolls it into view.

Declaration
public void Select(IEnumerable<GridCellRange> ranges, bool scrollIntoView, bool hideSelectionAdorners = false)
Parameters
Type Name Description
IEnumerable<GridCellRange> ranges

The collection of GridCellRange to select.

bool scrollIntoView

Whether to scroll the new selection into view.

bool hideSelectionAdorners

Whether the selection adorners are hidden.