TextBoxBase.SelectAll 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.
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