Count Property (Windows Collection)

Microsoft Office InfoPath

A read-only property that returns a count of the number of Window objects contained in the Windows collection.

expression.Count

expression    Required. An expression that returns a reference to the Windows collection.

Security Level

0: Can be accessed without restrictions.

Remarks

The Count property returns a long integer value.

Example

In the following example, the Count property is used within a Microsoft JScript for loop to iterate through the collection of Window objects and display a message box indicating the window type value:

for (i=0; i < Application.Windows.Count; i++)
{
   XDocument.UI.Alert("Window type: " + Application.Windows(i).Type);
}