blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-5a16c5a7.md
Gets the Insert Section Break Even Page item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string InsertSectionBreakEvenPage { get; }
| Type | Description |
|---|---|
| String |
The “InsertSectionBreakEvenPage” string.
|
Use this property to perform the following operations with the Insert Section Break Even Page item:
The Insert Section Break Even Page item is a button in the Page Breaks Menu. This button allows to insert a section break and start a new section on the next even page.
The following code snippet removes the Insert Section Break Even Page item from the Page Breaks Menu:
<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />
@code {
void onCustomizeRibbon(IRibbon ribbon) {
IBarItem pageBreaksMenu = ribbon.Tabs[RichEditRibbonTabNames.PageLayout].Groups[RichEditRibbonGroupNames.PageSetup].Items[RichEditBarItemNames.PageBreaksMenu];
if (pageBreaksMenu.Type == BarItemTypes.DropDown) {
IBarDropDown pageBreaksDropDown = (IBarDropDown)pageBreaksMenu;
pageBreaksDropDown.Items.Remove(RichEditBarItemNames.InsertColumnBreak);
pageBreaksDropDown.Items.Remove(RichEditBarItemNames.InsertPageBreak);
pageBreaksDropDown.Items.Remove(RichEditBarItemNames.InsertSectionBreakEvenPage);
pageBreaksDropDown.Items.Remove(RichEditBarItemNames.InsertSectionBreakNextPage);
pageBreaksDropDown.Items.Remove(RichEditBarItemNames.InsertSectionBreakOddPage);
}
}
}
See Also