Skip to main content
All docs
V25.1
  • RichEditRibbonGroupNames.DesignTableStyles Property

    Gets the name of the Design tab’s Table Styles group.

    Namespace: DevExpress.Blazor.RichEdit

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

    NuGet Package: DevExpress.Blazor.RichEdit

    Declaration

    public static string DesignTableStyles { get; }

    Property Value

    Type Description
    String

    The “DesignTableStyles” string.

    Remarks

    The Table Styles group is in the Design tab. This group includes the Table Styles item that allows users to change the style of the selected table.

    Table Styles Group

    Use the DesignTableStyles property to perform the following operations:

    The following code snippet removes this group from the Design tab:

    <DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
    
    @code {
        void onCustomizeRibbon(IRibbon ribbon) {
            string tabName = RichEditRibbonTabNames.TableDesign;
            string groupName = RichEditRibbonGroupNames.DesignTableStyles;
            ribbon.Tabs[tabName].Groups.Remove(groupName);
        }
    }
    
    See Also