TextBoxBase.SelectAll Méthode

Définition

Sélectionne l'intégralité du contenu du contrôle d'édition de texte.

public:
 void SelectAll();
public void SelectAll ();
member this.SelectAll : unit -> unit
Public Sub SelectAll ()

Exemples

L’exemple suivant montre comment utiliser la SelectAll méthode pour sélectionner tout le contenu d’un TextBox contrôle.

private void selectAll(object sender, RoutedEventArgs e)
{
    myTextBox.SelectAll();
}
Private Sub selectAll(ByVal sender As Object, ByVal e As RoutedEventArgs)
    myTextBox.SelectAll()
End Sub

S’applique à