TextBoxBase.Undo 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.
Annule la plus récente commande d'annulation. En d'autres termes, défait l'unité d'annulation la plus récente de la pile d'annulations.
public:
bool Undo();
public bool Undo ();
member this.Undo : unit -> bool
Public Function Undo () As Boolean
Retours
true
si l'opération d'annulation réussit ; sinon, false
. Cette méthode retourne false
si la pile d'annulation est vide.
Exemples
L'exemple suivant décrit comment utiliser la méthode Undo.
private void undoAction(object sender, RoutedEventArgs e)
{
if (myTextBox.CanUndo == true)
{
myTextBox.Undo();
}
}
Private Sub undoAction(ByVal sender As Object, ByVal e As RoutedEventArgs)
If myTextBox.CanUndo = True Then
myTextBox.Undo()
Else : Return
End If
End Sub