blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-9091a5c5.md
Gets the Show Page Paper Setup Dialog item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string ShowPagePaperSetupDialog { get; }
| Type | Description |
|---|---|
| String |
The “ShowPagePaperSetupDialog” string.
|
Use this property to perform the following operations with the Show Page Paper Setup Dialog item:
The Show Page Paper Setup Dialog item is a button in the Paper Size Menu. This button invokes the Page Setup dialog that allows users to change page settings of the selected sections.
The following code snippet removes the Show Page Paper Setup Dialog 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