ToolBar.ToolBarButtonCollection.Clear Méthode
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.
Supprime tous les boutons de la collection de boutons de la barre d'outils.
public:
virtual void Clear();
public void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Sub Clear ()
Implémente
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 Clear méthode itère dans la collection et supprime tous les boutons de barre d’outils affectés à .ToolBar.ToolBarButtonCollection
Pour supprimer un bouton de barre d’outils individuel de la collection, utilisez les Remove méthodes ou RemoveAt .
Pour ajouter de nouveaux ToolBarButton objets à la collection, utilisez les Addméthodes ou AddRangeInsert .