Back to Devexpress

RichEditBarItemNames.NewDocument Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-d51319ac.md

latest2.1 KB
Original Source

RichEditBarItemNames.NewDocument Property

Gets the New Document item’s name.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string NewDocument { get; }

Property Value

TypeDescription
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:

razor
<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

RichEditBarItemNames Class

RichEditBarItemNames Members

DevExpress.Blazor.RichEdit Namespace