Back to Devexpress

RichEditRibbonGroupNames.LayoutRowsAndColumns Property

blazor-devexpress-dot-blazor-dot-richedit-dot-richeditribbongroupnames-5514e2fb.md

latest2.7 KB
Original Source

RichEditRibbonGroupNames.LayoutRowsAndColumns Property

Gets the name of the Layout tab’s Rows and Columns group.

Namespace : DevExpress.Blazor.RichEdit

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

NuGet Package : DevExpress.Blazor.RichEdit

Declaration

csharp
public static string LayoutRowsAndColumns { get; }

Property Value

TypeDescription
String

The “LayoutRowsAndColumns” string.

|

Remarks

The Rows and Columns group is in the Layout tab and includes the following items:

Delete Table Elements MenuThe drop-down menu that allows users to delete rows, columns, cells, or a table.Insert Table Elements MenuThe drop-down menu that allows users to insert rows and columns to the selected table.

Use the LayoutRowsAndColumns property to perform the following operations:

The following code snippet removes an item from this group.

razor
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.TableLayout;
        string groupName = RichEditRibbonGroupNames.LayoutRowsAndColumns;
        string itemName = RichEditBarItemNames.DeleteTableElementsMenu;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}

See Also

RichEditRibbonGroupNames Class

RichEditRibbonGroupNames Members

DevExpress.Blazor.RichEdit Namespace