PrintForm.OnBeginPrint Method (PrintEventArgs)

 

Raises the BeginPrint event.

Namespace:   Microsoft.VisualBasic.PowerPacks.Printing
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

protected virtual void OnBeginPrint(
    PrintEventArgs e
)
protected:
virtual void OnBeginPrint(
    PrintEventArgs^ e
)
abstract OnBeginPrint : 
        e:PrintEventArgs -> unit
override OnBeginPrint : 
        e:PrintEventArgs -> unit
Protected Overridable Sub OnBeginPrint (
    e As PrintEventArgs
)

Parameters

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnBeginPrint method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors:

When overriding OnBeginPrint in a derived class, make sure to call the OnBeginPrint method of the base class so that registered delegates receive the event.

See Also

PrintForm Class
Microsoft.VisualBasic.PowerPacks.Printing Namespace
PrintForm Component (Visual Basic)
How to: Print a Form by Using the PrintForm Component (Visual Basic)
How to: Print the Client Area of a Form (Visual Basic)
How to: Print Client and Non-Client Areas of a Form (Visual Basic)
How to: Print a Scrollable Form (Visual Basic)
Deploying Applications That Reference the PrintForm Component (Visual Basic)

Return to top