Share via


ViewInfos.Count Property

InfoPath Developer Reference

A read-only property that returns a count of the number of ViewInfo objects contained in the ViewInfos collection. Read-only

Version Information
 Version Added:  InfoPath 2003

Syntax

expression.Count

expression   An expression that returns a ViewInfos object.

Return Value
Long

Remarks

The Count property returns a long integer value.

Security Level 0: Can be accessed without restrictions.

Example

In the following example, the Count property is used within a Microsoft JScript for loop to iterate through the collection of ViewInfo objects and display a message box indicating the name of each view implemented in the form:

JScript
  for (i=0; i < XDocument.ViewInfos.Count; i++)
{
   XDocument.UI.Alert("View name: " + XDocument.ViewInfos(i).Name);
}

See Also