Skip to main content
All docs
V25.1
  • RichEditBarItemNames.NewDocument Property

    Gets the New Document item’s name.

    Namespace: DevExpress.Blazor.RichEdit

    Assembly: DevExpress.Blazor.RichEdit.v25.1.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 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