Back to Devexpress

RichEditRibbonGroupNames.DesignTableStyles Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-bd52e33c.md

latest2.3 KB
Original Source

RichEditRibbonGroupNames.DesignTableStyles Property

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

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string DesignTableStyles { get; }

Property Value

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

Use the DesignTableStyles property to perform the following operations:

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

razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.TableDesign;
        string groupName = RichEditRibbonGroupNames.DesignTableStyles;
        ribbon.Tabs[tabName].Groups.Remove(groupName);
    }
}

See Also

RichEditRibbonGroupNames Class

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace