ExtendedDataGridView SuppressAltNavigation Property CleanCode C# Libraries v1.2.03 API
Gets or sets a value indicating whether to suppress alt-key navigation with up/down arrows.

Namespace: CleanCode.DataGridViewControls
Assembly: CleanCode.DataGridViewControls (in CleanCode.DataGridViewControls.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public bool SuppressAltNavigation { get; set; }

Field Value

true to suppress alt-key navigation; false to allow it. Default is false.
Remarks

Normally false, this property may be enabled in order to allow higher-level functionality. Example: You could use Alt+Up/Down to move to a subset of the rows in the DataGridView, disabling those keys when a boundary is reached. But when disabled, those keys are then processed by the DataGridView, where an Alt+DownArrow is the same as a DownArrow.
See Also