[]
Selects a given cell and optionally scrolls it into view.
public void Select(int row, int column, bool scrollIntoView = true, bool hideSelectionAdorners = false)
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. |
Selects a given cell and optionally scrolls it into view.
public void Select(GridCellRange range, bool scrollIntoView, bool hideSelectionAdorners = false)
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. |
Selects a collection of cell ranges and optionally scrolls it into view.
public void Select(IEnumerable<GridCellRange> ranges, bool scrollIntoView, bool hideSelectionAdorners = false)
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. |