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
'Usage
Exceptions
Exception type | Condition |
---|---|
The form cannot be printed. |
|
The Print method was called from the ViewSwitched event. |
|
InvalidOperationException |
The Print method was called from the Loading event. |
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.
Note
The Print method is equivalent to the PrintOut method of the XDocument object in the COM/Scripting object model, and to the PrintOut method of the _XDocument2 interface of the InfoPath 2003-compatible managed code object model.
This member can be accessed only by forms opened from a form template that as 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 Office InfoPath 2007.
Example
In the following example, the Print method of the XmlForm class is used to print the current view using the current printer settings.
this.Print();
Me.Print()
.NET Framework Security
- PrintingPermission for printing the form. Associated enumeration: System.Drawing.Printing.PrintingPermissionLevel.DefaultPrinting
See Also
Reference
XmlForm Class
XmlForm Members
Microsoft.Office.InfoPath Namespace