PrintHelper.Print(IPrintableControl) Method
In This Article
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 | IPrintable |
An object implementing the IPrintable |
#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