Enum GridCellActivateAction
Specifies current cell activation behavior when moving the current cell or clicking inside a cell. Defines when to set the focus / toggle edit mode for the current cell.
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public enum GridCellActivateAction
Remarks
Fields
| Name | Description |
|---|---|
| ClickOnCell | Begin editing / focus on text box after user clicked on cell. |
| DblClickOnCell | Begin editing / focus on text box when user double clicked on cell. |
| None | Do not set focus to text box. |
| PositionCaret | Forward mouse click to the text box so that the caret can be positioned at the character under the mouse pointer. |
| SelectAll | Begin editing / focus on text box and select all text whenever a cell becomes current cell no matter if user clicked on cell or moved with arrow keys. |
| SetCurrent | Begin editing / focus on text box whenever a cell becomes current cell no matter if user clicked on cell or moved with arrow keys. |