XmlForm.Print method
Prints the form content as it is rendered in the form's active view.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride Sub Print
'Usage
Dim instance As XmlForm
instance.Print()
public abstract void Print()
Exceptions
Exception | Condition |
---|---|
InvalidPrinterException | The form cannot be printed. |
InvalidOperationException | The Print method was called from the ViewSwitched event. |
InvalidOperationException | The Print method was called from the Loading event. |
SecurityException | The form template is not configured for Full Trust using the Security and Trust category of the Form Options dialog box. |
Remarks
The Print method uses the current printer settings, and raises exceptions if the method was called from event handlers for the ViewSwitched or Loading events, or is called from a form that is not fully trusted.
This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.
This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.
Examples
In the following code example, the Print method of the XmlForm class is used to print the current view using the current printer settings.
this.Print();
Me.Print()
Permissions
-
for printing the form. Associated enumeration: System.Drawing.Printing.PrintingPermissionLevel.DefaultPrinting