TextBoxBase.Redo 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, redoes the most recent undo unit on the undo stack.
public:
bool Redo();
public bool Redo ();
member this.Redo : unit -> bool
Public Function Redo () As Boolean
Returns
true
if the redo operation was successful; otherwise, false
. This method returns false
if there is no undo command available (the undo stack is empty).
Examples
The following example demonstrates how to use the Redo method.
private void redoAction(object sender, RoutedEventArgs e)
{
if (myTextBox.CanRedo == true)
{
myTextBox.Redo();
}
}
Private Sub redoAction(ByVal sender As Object, ByVal e As RoutedEventArgs)
If myTextBox.CanRedo = True Then
myTextBox.Redo()
Else : Return
End If
End Sub
Applies to
See also
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.