Back to Devexpress

RichEditRibbonGroupNames.DesignTableStyleOptions Property

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

latest2.5 KB
Original Source

RichEditRibbonGroupNames.DesignTableStyleOptions Property

Gets the name of the Design tab’s Table Style Options group.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string DesignTableStyleOptions { get; }

Property Value

TypeDescription
String

The “DesignTableStyleOptions” string.

|

Remarks

The Table Style Options group is in the Design tab. This group includes the Table Options Menu item that allows users to display special formatting for the first, odd, and last columns and rows of the selected table.

Use the DesignTableStyleOptions 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.DesignTableStyleOptions;
        ribbon.Tabs[tabName].Groups.Remove(groupName);
    }
}

See Also

RichEditRibbonGroupNames Class

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace