RichEditRibbonTabNames.File Property
Gets the File tab’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public static string File { get; }
Property Value
Type | Description |
---|---|
String | The “File” string. |
Remarks
The File tab includes the Common group that allows users to manage documents.
Use this property to perform the following operations with the File tab:
The following code snippet removes an item from this tab’s group:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
string tabName = RichEditRibbonTabNames.File;
string groupName = RichEditRibbonGroupNames.FileCommon;
string itemName = RichEditBarItemNames.PrintDocument;
ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
}
}
See Also