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