Click or drag to resize
CellControlProcessEnterKey Property
Gets or sets a value indicating if your custom control processes enter key events.

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
public bool ProcessEnterKey { get; set; }

Property Value

Type: Boolean
true if the custom control handles ENTER key events; false otherwise.
Remarks
Set this value to true to indicate that your control handles ENTER key events. If this property is false, ENTER key events automatically move the current cell right When this property is true, the user must do one of the following to change the current cell:
  • Click a new cell with the mouse.
  • Press the ESC key, and then use the arrow keys to move the current cell.
See Also