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)
{
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
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET