[]
Selects a given cell and optionally scrolls it into view.
public void Select(GridControlRange range, bool scrollIntoView, bool hideSelectionAdorners = false)
| Type | Name | Description |
|---|---|---|
| GridControlRange | range | GridControlRange to select. |
| bool | scrollIntoView | Whether to scroll the new selection into view. |
| bool | hideSelectionAdorners | Whether the selection adorners are hidden. |
Selects a collection of cells and optionally scrolls it into view.
public void Select(IEnumerable<GridControlRange> ranges, bool scrollIntoView, bool hideSelectionAdorners = false)
| Type | Name | Description |
|---|---|---|
| IEnumerable<GridControlRange> | ranges | The collection of GridControlRange to select. |
| bool | scrollIntoView | Whether to scroll the new selection into view. |
| bool | hideSelectionAdorners | Whether the selection adorners are hidden. |