PrintingSystemBase.AfterPagePaint Event
In This Article
Occurs after a specific page has been painted in a Print Preview.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public event PagePaintEventHandler AfterPagePaint
#Event Data
The AfterPagePaint event's data class is PagePaintEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Graphics |
Provides access to the graphics object on which the Page |
Page |
Provides access to the page for which the Printing |
Page |
Returns the bounds (size and location) of the page for which the Printing |
#Remarks
Handle the AfterPagePaint event to perform any specific actions before any page is painted in the Print Preview.
For more information on handling events, see Events and Delegates in MSDN.
See Also