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

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

Property Value

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

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