Skip to main content

RichEditBarItemNames.TableBorderStyle Property

Gets the Table Border Style item’s name.

Namespace: DevExpress.Blazor.RichEdit

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

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string TableBorderStyle { get; }

Property Value

Type Description
String

The “TableBorderStyle” string.

Remarks

Use this property to perform the following operations:

The Table Border Style item is a combo box in the Borders and Shadings group. This combo box sets but does not apply the border style setting. To apply border settings to the selected cell’s borders, use the following Table Borders Menu‘s items:

The example below demonstrates how to remove the Table Border Style item from the ribbon:

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.TableDesign;
        string groupName = RichEditRibbonGroupNames.DesignBordersAndShadings;
        string itemName = RichEditBarItemNames.TableBorderStyle;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also