Windows.Count property

Gets a count of the number of WindowObject objects contained in the WindowsCollection collection.

Namespace:  Microsoft.Office.Interop.InfoPath
Assembly:  Microsoft.Office.Interop.InfoPath (in Microsoft.Office.Interop.InfoPath.dll)

Syntax

'Declaration
ReadOnly Property Count As Integer
    Get
'Usage
Dim instance As Windows
Dim value As Integer

value = instance.Count
int Count { get; }

Property value

Type: System.Int32

Examples

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

for (int i=0; i < thisApplication.Windows.Count; i++)
{
 thisXDocument.UI.Alert("Window type: " + thisApplication.Windows[i].WindowType);
}

See also

Reference

Windows interface

Windows members

Microsoft.Office.Interop.InfoPath namespace