Gets or sets a value indicating whether to suppress alt-key navigation with up/down arrows.
Namespace: CleanCode.DataGridViewControlsAssembly: CleanCode.DataGridViewControls (in CleanCode.DataGridViewControls.dll) Version: 1.2.3.0 (1.2.03)
public bool SuppressAltNavigation { get; set; }
public bool SuppressAltNavigation { get; set; }
Public Property SuppressAltNavigation As Boolean
Get
Set
Public Property SuppressAltNavigation As Boolean
Get
Set
public:
property bool SuppressAltNavigation {
bool get ();
void set (bool value);
}
public:
property bool SuppressAltNavigation {
bool get ();
void set (bool value);
}
Field Value
true to suppress alt-key navigation;
false to allow it.
Default is
false.
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.