PrintForm.OnQueryPageSettings Method

Raises the QueryPageSettings event.

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

Syntax

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

Parameters

Remarks

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

The OnQueryPageSettings 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 OnQueryPageSettings in a derived class, make sure to call the OnQueryPageSettings 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)