ToolBar.ToolBarButtonCollection.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 de boutons dans la collection de boutons de barre d'outils.
public:
property int Count { int get(); };
[System.ComponentModel.Browsable(false)]
public int Count { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Count : int
Public ReadOnly Property Count As Integer
Valeur de propriété
Nombre de contrôles ToolBarButton assignés à la barre d'outils.
Implémente
- Attributs
Exemples
L’exemple de code suivant affiche le Count de avant Buttons et après l’appel de la Clear méthode. Ce code nécessite qu’un ToolBar avec au moins un ToolBarButton a été créé.
public:
void ClearMyToolBar()
{
int btns;
// Get the count before the Clear method is called.
btns = toolBar1->Buttons->Count;
toolBar1->Buttons->Clear();
MessageBox::Show( "Count Before Clear: " + btns.ToString() +
"\nCount After Clear: " + toolBar1->Buttons->Count.ToString() );
}
public void ClearMyToolBar()
{
int btns;
// Get the count before the Clear method is called.
btns = toolBar1.Buttons.Count;
toolBar1.Buttons.Clear();
MessageBox.Show("Count Before Clear: " + btns.ToString() +
"\nCount After Clear: " + toolBar1.Buttons.Count.ToString());
}
Public Sub ClearMyToolBar()
Dim btns As Integer
' Get the count before the Clear method is called.
btns = toolBar1.Buttons.Count
toolBar1.Buttons.Clear()
MessageBox.Show("Count Before Clear: " + btns.ToString() & _
Microsoft.VisualBasic.ControlChars.Cr & "Count After Clear: " & _
toolBar1.Buttons.Count.ToString())
End Sub
Remarques
La Count propriété contient le nombre réel de ToolBarButton contrôles attribués à la collection. Il est courant d’utiliser la valeur de propriété Count comme limites supérieures d’une boucle pour itérer dans une collection. La valeur d’index d’une collection étant un index de base zéro, vous devez en soustraire un de la variable de boucle, sinon vous dépassez les limites supérieures de la collection et lèvez une exception.