Windows.Count Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nombre d’objets WindowObject contenus dans la WindowsCollection collection.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
Valeur de propriété
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.<span class="label">Count</span>; i++)
{
thisXDocument.UI.Alert("Window type: " + thisApplication.Windows[i].WindowType);
}
Remarques
Important : ce membre est accessible sans restrictions.