TextBoxBase.CanRedo Property
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.
Gets a value that indicates whether the most recent undo action can be redone.
public:
property bool CanRedo { bool get(); };
public bool CanRedo { get; }
member this.CanRedo : bool
Public ReadOnly Property CanRedo As Boolean
Property Value
true
if the most recent undo action can be redone; otherwise, false
.
This property has no default value.
Examples
The following code example demonstrates how to use the CanRedo property to determine whether the most recent undo action can be redone.
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
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.