Freigeben über


AttributeCollection.Count-Eigenschaft

Ruft die Anzahl der Attribute ab.

Namespace: System.ComponentModel
Assembly: System (in system.dll)

Syntax

'Declaration
Public ReadOnly Property Count As Integer
'Usage
Dim instance As AttributeCollection
Dim value As Integer

value = instance.Count
public int Count { get; }
public:
property int Count {
    int get ();
}
/** @property */
public int get_Count ()
public function get Count () : int

Eigenschaftenwert

Die Anzahl der Attribute.

Hinweise

Mit der Count-Eigenschaft können Sie die Begrenzungen einer Schleife festlegen, die eine Auflistung von Objekten durchläuft. Wenn die Auflistung nullbasiert ist, müssen Sie als obere Grenze der Schleife Count - 1 verwenden.

Beispiel

Im folgenden Codebeispiel wird mithilfe der Count-Eigenschaft die Anzahl der Eigenschaften für button1 in einem Textfeld ausgegeben. Dabei wird vorausgesetzt, dass button1 und textBox1 in einem Formular erstellt wurden.

Private Sub GetCount
    ' Creates a new collection and assigns it the attributes for button 1.
    Dim attributes As AttributeCollection
    attributes = TypeDescriptor.GetAttributes(button1)
    ' Prints the number of items in the collection.
    textBox1.Text = attributes.Count.ToString
End Sub
private void GetCount() {
    // Creates a new collection and assigns it the attributes for button1.
    AttributeCollection attributes;
    attributes = TypeDescriptor.GetAttributes(button1);
 
    // Prints the number of items in the collection.
    textBox1.Text = attributes.Count.ToString();
 }
private:
   void GetCount()
   {
      // Creates a new collection and assigns it the attributes for button1.
      AttributeCollection^ attributes;
      attributes = TypeDescriptor::GetAttributes( button1 );
      
      // Prints the number of items in the collection.
      textBox1->Text = attributes->Count.ToString();
   }
private void GetCount()
{
    // Creates a new collection and assigns it the attributes for button1.
    AttributeCollection attributes;
    attributes = TypeDescriptor.GetAttributes(button1);
    // Prints the number of items in the collection.
    textBox1.set_Text(((Int32)attributes.get_Count()).ToString());
} //GetCount
private function GetCount() {
    // Create a new collection and assign it the attributes for button1.
    var attributes : AttributeCollection;
    attributes = TypeDescriptor.GetAttributes(button1);
 
    // Print the number of items in the collection.
    textBox1.Text = attributes.Count.ToString();
 }

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

AttributeCollection-Klasse
AttributeCollection-Member
System.ComponentModel-Namespace
Attribute