Skip to main content

PrintHelper.Print(IReport) Method

Opens the Print dialog that allows printing the specified report.

Namespace: DevExpress.Xpf.Printing

Assembly: DevExpress.Xpf.Printing.v23.2.dll

NuGet Package: DevExpress.Wpf.Printing

Declaration

public static bool? Print(
    IReport source
)

Parameters

Name Type Description
source IReport

An object implementing the IReport interface that specifies the report to print.

Returns

Type Description
Nullable<Boolean>

true, if the user clicks OK in the dialog; false, if the user clicks Cancel; otherwise, null (Nothing in Visual Basic).

Remarks

You can also use the PrintHelper.PrintDirect method to immediately send the report to the default or specified printer without invoking Print dialog.

See Also