BarGroupCollection.Add(String) Method
In This Article
Adds a predefined item group to the ribbon or toolbar.
Namespace: DevExpress.Blazor.Office
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
public IBarGroup Add(
string name
)
#Parameters
Name | Type | Description |
---|---|---|
name | String | The name of the toolbar group or ribbon group to insert. |
#Returns
Type | Description |
---|---|
IBar |
The inserted item group. |
#Remarks
The Add
method overloads allow you to add a predefined group to a ribbon tab or toolbar. Use properties of the RichEditRibbonGroupNames and RichEditToolbarGroupNames classes to obtain names of all built-in ribbon and toolbar groups.
The following code snippet customizes the ribbon as follows:
- Returns the first tab’s group collection.
- Adds the default Full Screen and Undo/Clipboard groups to this collection.
Razor
<DxRichEdit CustomizeRibbon=OnCustomizeRibbon />
@code {
void OnCustomizeRibbon(IRibbon ribbon) {
BarGroupCollection groups = ribbon.Tabs[0].Groups;
// Inserts the Undo/Clipboard group at the end of the group collection
groups.Add(RichEditRibbonGroupNames.HomeUndoClipboard);
// Inserts the Full Screen group at the first position in the group collection
groups.Add(0, RichEditRibbonGroupNames.ViewFullScreen);
}
}
See Also