BarEditItem.SuppressModifierKey Property
Gets or sets whether to suppress the specified keyboard key for the editor.
Namespace: DevExpress.XtraBars
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(SuppressKeys.Default)]
[DXCategory("Behavior")]
public SuppressKeys SuppressModifierKey { get; set; }
Property Value
Type | Default | Description |
---|---|---|
SuppressKeys | Default | Suppressed modifier keys. |
Available values:
Name | Description |
---|---|
Default |
|
None | Do not suppress keys. |
Control | Suppress the Ctrl key. |
Alt | Suppress the Alt key. |
Remarks
The default editor invokes its drop-down window when a user presses the Alt + Down Arrow combination. Set the SuppressModifierKey
to Alt
to invoke this window with the Down Arrow key only.
See Also