Skip to main content
A newer version of this page is available. .

PrintingController.CustomPrint Event

Occurs when the PrintingController.PrintAction is executed.

Namespace: DevExpress.ExpressApp.Win.SystemModule

Assembly: DevExpress.ExpressApp.Win.v18.2.dll

Declaration

public event EventHandler<HandledEventArgs> CustomPrint

Event Data

The CustomPrint event's data class is HandledEventArgs. The following properties provide information specific to this event:

Property Description
Handled Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing.

Remarks

Use this event to implement custom printing. Set the Handled parameter to true to disable standard processing.

See Also