Windows.Count - Propriété
Obtient le nombre d'objets WindowObject que contient la collection WindowsCollection.
Espace de noms : Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly : Microsoft.Office.Interop.InfoPath.SemiTrust (dans Microsoft.Office.Interop.InfoPath.SemiTrust.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
Remarques
Important
Vous pouvez accéder à ce membre sans restrictions.
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);
}
Voir aussi
Référence
Microsoft.Office.Interop.InfoPath.SemiTrust - Espace de noms