XDocuments2.Close method (Object)
Closes the specified Microsoft Office InfoPath form.
Namespace: Microsoft.Office.Interop.InfoPath
Assembly: Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)
Syntax
'Declaration
Sub Close ( _
varIndex As Object _
)
'Usage
Dim instance As XDocuments2
Dim varIndex As Object
instance.Close(varIndex)
void Close(
Object varIndex
)
Parameters
varIndex
Type: System.ObjectAn expression that specifies the position of a member of the XDocumentsCollection. If a numeric expression, the argument must be a number from 0 to the value of the Count minus 1. If a string expression, the argument must be the Uniform Resource Locator (URL) path of a member of the collection.
Implements
Remarks
The Close method closes the currently open form without quitting the InfoPath application. The form is closed unconditionally, meaning that any changes made to the data in the form are not saved.
Examples
thisApplication.XDocuments.Close(0);