_XDocument2.ViewInfos Property
Gets a reference to the ViewInfosCollection collection associated with a form.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Property ViewInfos As ViewInfosCollection
Get
'Usage
Dim instance As _XDocument2
Dim value As ViewInfosCollection
value = instance.ViewInfos
ViewInfosCollection ViewInfos { get; }
Property Value
Type: Microsoft.Office.Interop.InfoPath.SemiTrust.ViewInfosCollection
Implements
Remarks
The ViewInfos collection contains a collection of ViewInfoObject object containing information about each of the views implemented in an InfoPath form.
Important
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
Examples
In the following example, the ViewInfos property of the XDocument object is used to set a reference to the ViewInfosCollection collection; then, using the Count property of the ViewInfosCollection collection, it loops through the collection to determine the default view using the IsDefault property of the ViewInfoObject object. When the default view is found, the code displays the name of the view in a message box.
ViewInfos viewInfos;
viewInfos = thisXDocument.ViewInfos;
for (int i=0; i < viewInfos.Count; i++)
{
if (viewInfos[i].IsDefault)
{
thisXDocument.UI.Alert("The default view is: " + viewInfos[i].Name);
}
}