PrintForm Constructor (Form)

 

Initializes a new instance of the PrintForm class, specifying the Form where it will be parented.

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

Syntax

public PrintForm(
    Form form
)
public:
PrintForm(
    Form^ form
)
new : 
        form:Form -> PrintForm
Public Sub New (
    form As Form
)

Parameters

  • parentForm
    A Form where the component will be parented.

Remarks

A PrintForm component created at run time has no visual representation.

Examples

The following example shows a common use of the PrintForm component.

Dim pf As New PrintForm(Me)
pf.PrintAction = PrintToPrinter
pf.Print()

See Also

PrintForm Overload
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