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

RichEditRibbonGroupNames.HomeUndoClipboard Property

Gets the name of the Home tab’s Undo/Clipboard group.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

#Declaration

C#
public static string HomeUndoClipboard { get; }

#Property Value

Type Description
String

The “HomeUndoClipboard” string.

#Remarks

The Undo/Clipboard group is in the Home tab and includes the following items:

Clipboard Menu
A drop-down menu that allows users to copy and cut the selected text and paste the content of the Clipboard.
Redo
A button that allows users to redo the last operation.
Undo
A button that allows users to undo the last operation.

Home Undo Group

Use the HomeUndoClipboard property to perform the following operations:

The following code snippet removes the ClipboardMenu item from the Undo/Clipboard group.

Razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.Home;
        string groupName = RichEditRibbonGroupNames.HomeUndoClipboard;
        string itemName = RichEditBarItemNames.ClipboardMenu;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also