Skip to main content

RichEditBarItemNames.NewDocument Property

Gets the New Document item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string NewDocument { get; }

Property Value

Type Description
String

The “NewDocument” string.

Remarks

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 example below 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