blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-f0543820.md
Gets the Show Bookmark Dialog item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string ShowBookmarkDialog { get; }
| Type | Description |
|---|---|
| String |
The “ShowBookmarkDialog” string.
|
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 following code snippet removes 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