PropertyDescriptorCollection.Count Propriété

Définition

Obtient le nombre de descripteurs de propriété dans la 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é

Nombre de descripteurs de propriété dans la collection.

Implémente

Exemples

L’exemple de code suivant utilise la Count propriété pour imprimer le nombre de propriétés sur button1. Il nécessite que button1 et textBox1 ont été instanciés sur un formulaire.

private:
   void GetCount()
   {
      // Creates a new collection and assign it the properties for button1.
      PropertyDescriptorCollection^ properties = TypeDescriptor::GetProperties( button1 );
      
      // Prints the number of properties on button1 in a textbox.
      textBox1->Text = properties->Count.ToString();
   }
private void GetCount() {
    // Creates a new collection and assign it the properties for button1.
    PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(button1);
 
    // Prints the number of properties on button1 in a textbox.
    textBox1.Text = properties.Count.ToString();
 }
Private Sub GetCount()
    ' Creates a new collection and assign it the properties for button1.
    Dim properties As PropertyDescriptorCollection = TypeDescriptor.GetProperties(button1)
       
    ' Prints the number of properties on button1 in a textbox.
    textBox1.Text = properties.Count.ToString()
End Sub

Remarques

Vous pouvez utiliser la Count propriété pour définir les limites d’une boucle qui itère via une collection d’objets. Étant donné que la collection est de base zéro, veillez à utiliser Count - 1 comme limite supérieure de la boucle.

S’applique à

Voir aussi