TextBoxBase.Undo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Undoes the most recent undo command. In other words, undoes the most recent undo unit on the undo stack.
public:
bool Undo();
public bool Undo ();
member this.Undo : unit -> bool
Public Function Undo () As Boolean
Returns
true
if the undo operation was successful; otherwise, false
. This method returns false
if the undo stack is empty.
Examples
The following example demonstrates how to use the Undo method.
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
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.