Skip to main content

RichEditBarItemNames.PrintDocument Property

Gets the Print Document item’s name.

Namespace: DevExpress.Blazor.RichEdit

Assembly: DevExpress.Blazor.RichEdit.v23.2.dll

NuGet Package: DevExpress.Blazor.RichEdit

Declaration

public static string PrintDocument { get; }

Property Value

Type Description
String

The “PrintDocument” string.

Remarks

The Print Document item is a button in the ribbon’s Common group and the toolbar’s File group. This button allows users to print an open document.

Use the PrintDocument property to perform the following operations:

The example below removes the Print Document item from the ribbon.

<DxRichEdit CustomizeRibbon="onCustomizeRibbon" />

@code {
    void onCustomizeRibbon(IRibbon ribbon) {
        string tabName = RichEditRibbonTabNames.File;
        string groupName = RichEditBarGroupNames.FileCommon;
        string itemName = RichEditBarItemNames.PrintDocument;
        ribbon.Tabs[tabName].Groups[groupName].Items.Remove(itemName);
    }
}
See Also