Skip to main content

DevExpress v24.1 Update — Your Feedback Matters

Our What's New in v24.1 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

PrintHelper.Print(IPrintableControl) Method

Opens the Print dialog that allows printing the specified control.

Namespace: DevExpress.Xpf.Printing

Assembly: DevExpress.Xpf.Printing.v24.1.dll

NuGet Package: DevExpress.Wpf.Printing

#Declaration

public static bool? Print(
    IPrintableControl source
)

#Parameters

Name Type Description
source IPrintableControl

An object implementing the IPrintableControl interface that specifies the control 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 control to the default or specified printer without invoking Print dialog.

See Also