ListItemCollection.Count Propriété

Définition

Obtient le nombre d'objets ListItem 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é

Int32

Nombre d'objets ListItem dans la collection.

Implémente

Exemples

Pour afficher le code suivant dans un exemple complet, consultez la ListItemCollection rubrique de classe.

// Set the number of rows displayed in the ListBox to be
// the number of items in the ListBoxCollection.
ListBox1.Rows = ListBox1.Items.Count;
' Set the number of rows displayed in the ListBox to be
' the number of items in the ListBoxCollection.
ListBox1.Rows = ListBox1.Items.Count

Remarques

Utilisez la Count propriété pour déterminer le nombre d’objets ListItem dans le ListItemCollection. La Count propriété est couramment utilisée lors de l’itération dans la collection pour déterminer la limite supérieure de la collection.

S’applique à

Voir aussi