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
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.