blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-d51319ac.md
Gets the New Document item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string NewDocument { get; }
| Type | Description |
|---|---|
| String |
The “NewDocument” string.
|
The New Document item is a button in the ribbon’s Common group and the toolbar’s File group. This button allows users to create a document.
Use the NewDocument property to perform the following operations:
The following code snippet removes the New Document item from the ribbon:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
string tabName = RichEditRibbonTabNames.File;
string groupName = RichEditRibbonGroupNames.FileCommon;
string itemName = RichEditBarItemNames.NewDocument;
ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
}
}
See Also