XmlForm.ViewInfos Property (Microsoft.Office.InfoPath)

Gets a reference to the ViewInfoCollection object associated with the form template.

Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in microsoft.office.infopath.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property ViewInfos As ViewInfoCollection
'Usage
Dim instance As XmlForm
Dim value As ViewInfoCollection

value = instance.ViewInfos
public abstract ViewInfoCollection ViewInfos { get; }

Property Value

A ViewInfoCollection that contains the ViewInfo objects associated with the form template.

Remarks

The ViewInfosCollection object contains a collection of ViewInfo objects containing information about each of the views implemented in an InfoPath form template.

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.

This type or member can be accessed from code running in forms opened in Microsoft Office InfoPath 2007 or in a Web browser.

Example

In the following example, the ViewInfos property of the XmlForm object is used to set a reference to the ViewInfoCollection for the form template. It then loops through each ViewInfo object in the collection to display the name of each view in a message box.

ViewInfoCollection viewInfos = this.ViewInfos;

foreach(ViewInfo thisView in viewInfos)
{
   MessageBox.Show("View name: " + thisView.Name);
}
Dim viewInfos As ViewInfoCollection = Me.ViewInfos

For Each thisView As ViewInfo In viewInfos
   MessageBox.Show("View name:" & thisView.Name)
Next

See Also

Reference

XmlForm Class
XmlForm Members
Microsoft.Office.InfoPath Namespace