View.Export Method
Exports the view to a file of the specified format.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
Sub Export ( _
bstrURL As String, _
bstrFormat As String _
)
'Usage
Dim instance As View
Dim bstrURL As String
Dim bstrFormat As String
instance.Export(bstrURL, bstrFormat)
void Export(
string bstrURL,
string bstrFormat
)
Parameters
bstrURL
Type: System.StringThe directory location that the exported view file will be written to.
bstrFormat
Type: System.StringThe type of file format to export to. Only the "MHT" value is supported.
Remarks
If used in a form that is not fully trusted, the Export method will return a "permission denied" error.
Important
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.
Examples
In the following example, the Export method of the ViewObject object is used to export the current view:
thisXDocument.View.Export(@"C:\MyView.mht", "MHT");