Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DataViewBase.ShowPrintPreview(FrameworkElement, String, String) Method

Creates the print document from the DataViewBase (or its inheritor) and displays a Print Preview of the document.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public void ShowPrintPreview(
    FrameworkElement owner,
    string documentName,
    string title
)

#Parameters

Name Type Description
owner FrameworkElement

The owner of the Print Preview.

documentName String

The name of the document displayed in the Print Preview.

title String

The title 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

void Print_Data(object sender, RoutedEventArgs e) {
    view.ShowPrintPreview(this, "ExamplePrint", "Print Preview");
}

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