PrintForm.OnEndPrint Method

Raises the EndPrint event.

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

Syntax

'Declaration
Protected Overridable Sub OnEndPrint ( _
    e As PrintEventArgs _
)
protected virtual void OnEndPrint(
    PrintEventArgs e
)
protected:
virtual void OnEndPrint(
    PrintEventArgs^ e
)
abstract OnEndPrint : 
        e:PrintEventArgs -> unit 
override OnEndPrint : 
        e:PrintEventArgs -> unit 
protected function OnEndPrint(
    e : PrintEventArgs
)

Parameters

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.

The OnEndPrint 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 OnEndPrint in a derived class, make sure to call the OnEndPrint method of the base class so that registered delegates receive the event.

.NET Framework Security

See Also

Reference

PrintForm Class

Microsoft.VisualBasic.PowerPacks.Printing Namespace

Other Resources

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)