Back to Devexpress

DataViewBase.ShowRibbonPrintPreviewDialog(Window) Method

wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-dot-showribbonprintpreviewdialog-x28-system-dot-windows-dot-window-x29.md

latest2.4 KB
Original Source

DataViewBase.ShowRibbonPrintPreviewDialog(Window) Method

Creates the print document from the DataViewBase (or its inheritor) and displays the document’s Print Preview as a modal window with the Ribbon UI.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
public void ShowRibbonPrintPreviewDialog(
    Window owner
)
vb
Public Sub ShowRibbonPrintPreviewDialog(
    owner As Window
)

Parameters

NameTypeDescription
ownerWindow

The owner of the Print Preview.

|

Remarks

The Print Preview displays the printed document’s appearance. The Print Preview window allows end users to print the document and export it to a file in the required format.

View Example

csharp
void Print_Data(object sender, RoutedEventArgs e) {
    view.ShowRibbonPrintPreviewDialog(this);
}
vb
Private Sub Print_Data(ByVal sender As Object, ByVal e As RoutedEventArgs)
    view.ShowRibbonPrintPreviewDialog(Me)
End Sub

Note

You can preview, print, and export the control’s data only if the DXPrinting Library is available.

Refer to the following topics for more information on how to print data:

See Also

DataViewBase Class

DataViewBase Members

DevExpress.Xpf.Grid Namespace