Windows.Count - Propriété
Obtient le nombre d'objets WindowObject contenus dans la collection WindowsCollection .
Espace de noms : Microsoft.Office.Interop.InfoPath
Assembly : Microsoft.Office.Interop.InfoPath (dans Microsoft.Office.Interop.InfoPath.dll)
Syntaxe
'Déclaration
ReadOnly Property Count As Integer
Get
'Utilisation
Dim instance As Windows
Dim value As Integer
value = instance.Count
int Count { get; }
Valeur de propriété
Type : System.Int32
Exemples
Dans l'exemple suivant, la propriété Count est utilisée dans une boucle For pour itération dans la collection des objets Window et pour afficher une boîte de message indiquant la valeur du type de fenêtre :
for (int i=0; i < thisApplication.Windows.Count; i++)
{
thisXDocument.UI.Alert("Window type: " + thisApplication.Windows[i].WindowType);
}