_Application2.XDocuments property
Office 2013
This documentation is preliminary and is subject to change.
Gets a reference to the XDocuments collection.
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
After you have set a reference to the XDocuments collection, you can use its properties to access each of the XDocumentobjects that it contains.
Important
|
|---|
This member can be accessed without restrictions. |
In the following example, the XDocuments property is used to access the Count property of the XDocumentsCollection collection and display the value in a message box:
thisXDocument.UI.Alert("Count of XDocuments: " + thisApplication.XDocuments.Count);
Important