Skip to main content
.NET 6.0+

PrintingController.CustomPrint Event

Occurs when the PrintingController.PrintAction is executed.

Namespace: DevExpress.ExpressApp.Win.SystemModule

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

NuGet Package: DevExpress.ExpressApp.Win

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