Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PrintDocument::BeginPrint Event

 

Occurs when the Print method is called and before the first page of the document prints.

Namespace:   System.Drawing.Printing
Assembly:  System.Drawing (in System.Drawing.dll)

public:
event PrintEventHandler^ BeginPrint {
	void add(PrintEventHandler^ value);
	void remove(PrintEventHandler^ value);
}

Typically, you handle the BeginPrint event to initialize fonts, file streams, and other resources used during the printing process.

To associate the event with your event handler, add an instance of the PrintEventHandler delegate to the event. The event handler is called whenever the event occurs. For more information about handling events with delegates, see Handling and Raising Events.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft