Skip to main content
All docs
V25.2
  • RichEditRibbonTabNames.File Property

    Gets the File tab’s name.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static string File { get; }

    Property Value

    Type Description
    String

    The “File” string.

    Remarks

    The File tab includes the Common group that allows users to manage documents.

    File Tab

    Use this property to perform the following operations with the File tab:

    The following code snippet removes an item from this tab’s group:

    <DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
    
    @code {
        void onCustomizeRibbon(IRibbon ribbon) {
            string tabName = RichEditRibbonTabNames.File;
            string groupName = RichEditRibbonGroupNames.FileCommon;
            string itemName = RichEditBarItemNames.PrintDocument;
            ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
        }
    }
    
    See Also