blazor-devexpress-dot-blazor-dot-richedit-dot-richeditbaritemnames-b7b27b08.md
Gets the Print Document item’s name.
Namespace : DevExpress.Blazor.RichEdit
Assembly : DevExpress.Blazor.RichEdit.v25.2.dll
NuGet Package : DevExpress.Blazor.RichEdit
public static string PrintDocument { get; }
| Type | Description |
|---|---|
| String |
The “PrintDocument” string.
|
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 following code snippet 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