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
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.