Click or drag to resize
CellControlProcessHorizontalArrows Property
Gets or sets a value indicating if your custom control processes horizontal arrow key events.

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

Property Value

Type: Boolean
true if the custom control handles horizontal arrow key events; false otherwise.
Remarks
Set this value to true to indicate that your control handles horizontal arrow key events. Edit controls, for example, may wish to process horizontal arrow key events. If this property is false, horizontal arrow key events automatically move the current cell in the direction corresponding to the key pressed.

When this property is true, a 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