AutomationElementCollection.Count Eigenschaft

Definition

Ruft die Anzahl der Elemente in dieser Auflistung ab.

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

Eigenschaftswert

Die Anzahl der Elemente.

Implementiert

Beispiele

Das folgende Beispiel zeigt die Count verwendete -Eigenschaft.

// elementCollection is an AutomationElementCollection.
AutomationElement[] elementArray = new AutomationElement[elementCollection.Count];
elementCollection.CopyTo(elementArray, 0);
' elementCollection is an AutomationElementCollection.
Dim elementArray(elementCollection.Count) As AutomationElement
elementCollection.CopyTo(elementArray, 0)

Gilt für: