Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RichEditControl.RemoveShortcutKey(Keys, Keys, RichEditViewType) Method

Removes a command shortcut for the specified RichEditView.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v24.2.dll

NuGet Package: DevExpress.Wpf.RichEdit

#Declaration

public void RemoveShortcutKey(
    Keys key,
    Keys modifier,
    RichEditViewType viewType
)

#Parameters

Name Type Description
key Keys

A Keys enumeration member specifying a key to assign.

modifier Keys

A Keys enumeration member specifying a modifier key.

viewType RichEditViewType

An enumeration value that indicates the view from which the shortcut key should be removed.

#Remarks

The RichEditControl’s shortcuts should be removed after the control is initialized (e.g. in Window.Loaded event handler).

To assign a command shortcut, use the RichEditControl.AssignShortcutKeyToCommand method.

The following example demonstrates how to remove the Ctrl+O shortcut, which allows users to load a document:

using DevExpress.XtraRichEdit;
using System.Windows.Forms;
//...
public MainWindow()
{
    InitializeComponent();
    richEditControl.Loaded += RichEditControl_DocumentLoaded;
}

private void RichEditControl_DocumentLoaded(object sender, EventArgs e)
{
    richEditControl.RemoveShortcutKey(Keys.O, Keys.Control,RichEditViewType.PrintLayout);
}
See Also