corelibraries-devexpress-dot-xtraprinting-dot-printingsystembase-7e7b1393.md
Occurs before a specific page has been painted in a Print Preview.
Namespace : DevExpress.XtraPrinting
Assembly : DevExpress.Printing.v25.2.Core.dll
NuGet Package : DevExpress.Printing.Core
public event PagePaintEventHandler BeforePagePaint
Public Event BeforePagePaint As PagePaintEventHandler
The BeforePagePaint 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 PagePaintEventArgs.Page is painted. |
| Page | Provides access to the page for which the PrintingSystemBase.BeforePagePaint or PrintingSystemBase.AfterPagePaint event is raised. |
| PageRectangle | Returns the bounds (size and location) of the page for which the PrintingSystemBase.BeforePagePaint or PrintingSystemBase.AfterPagePaint event is raised. |
Handle the BeforePagePaint event to perform any specific actions after any page is painted in the Print Preview.
For more information on handling events, see Events and Delegates in MSDN.
See Also