RichEditBarItemNames.PaperSizeA6 Property
Gets the Paper Size A6 item’s name.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.1.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public static string PaperSizeA6 { get; }
Property Value
Type | Description |
---|---|
String | The “PaperSizeA6” string. |
Remarks
Use this property to perform the following operations with the Paper Size A6 item:
- Access the item’s properties
- Add the item to a group
- Remove the item from a group
- Remove the item from the Paper Size Menu
The Paper Size A6 item is a button in the Paper Size Menu. This button allows users to set the paper size of the selected sections to A6.
The following code snippet removes the Paper Size A6 item from the Paper Size Menu:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
IBarItem pageSizeMenu = ribbon.Tabs[RichEditRibbonTabNames.PageLayout].Groups[RichEditRibbonGroupNames.PageSetup].Items[RichEditBarItemNames.PaperSizeMenu];
if (pageSizeMenu.Type == BarItemTypes.DropDown) {
IBarDropDown pageSizeDropDown = (IBarDropDown)pageSizeMenu;
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeA4);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeA5);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeA6);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeB5);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeExecutive);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeFolio);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeLegal);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.PaperSizeLetter);
pageSizeDropDown.Items.Remove(RichEditBarItemNames.ShowPagePaperSetupDialog);
}
}
}
See Also