Skip to main content

RichEditBarItemNames.ShowBookmarkDialog Property

Gets the Show Bookmark Dialog item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string ShowBookmarkDialog { get; }

Property Value

Type Description
String

The “ShowBookmarkDialog” string.

Remarks

Use this property to perform the following operations:

The Show Bookmark Dialog item is a button in the Links group. This button invokes the Bookmark dialog that allows users to create and delete bookmarks and navigate through them.

The example below demonstrates how to remove the Show Bookmark Dialog item from the ribbon:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

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