RichTextBox.Redo 方法

定义

重新应用控件中上次撤消的操作。

public:
 void Redo();
public void Redo ();
member this.Redo : unit -> unit
Public Sub Redo ()

示例

下面的代码示例演示如何使用 CanRedoRedoActionName 属性和 Redo 方法将重做操作限制为除删除文本以外的任何操作。 本示例要求你有一个包含控件的窗体 RichTextBox ,并在 RichTextBox 调用此示例中的代码之前执行和撤消操作。

private:
   void RedoAllButDeletes()
   {
      // Determines if a Redo operation can be performed.
      if ( richTextBox1->CanRedo == true )
      {
         // Determines if the redo operation deletes text.
         if (  !richTextBox1->RedoActionName->Equals( "Delete" ) )
         // Perform the redo.
         richTextBox1->Redo();
      }
   }
private void RedoAllButDeletes()
{
    // Determines if a Redo operation can be performed.
    if(richTextBox1.CanRedo == true)
    {
        // Determines if the redo operation deletes text.
        if (richTextBox1.RedoActionName != "Delete")
            // Perform the redo.
            richTextBox1.Redo();
    }
}
Private Sub RedoAllButDeletes()

    ' Determines if a Redo operation can be performed.
    If richTextBox1.CanRedo = True Then
        ' Determines if the redo operation deletes text.
        If richTextBox1.RedoActionName <> "Delete" Then
            ' Perform the redo.
            richTextBox1.Redo()
        End If
    End If
End Sub

注解

然后 Redo ,可以使用该方法将最后一个撤消操作重新应用于控件。 CanRedo 方法可确定用户最后一次撤消的操作是否可重新应用于控件。

适用于

另请参阅