RichTextBox.Redo メソッド

定義

コントロールで最後に元に戻された操作を再適用します。

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

次のコード例では、 プロパティと RedoActionName プロパティと メソッドをCanRedo使用して、やり直し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 メソッドを使用すると、ユーザーが元に戻した最後の操作をコントロールに再適用できるかどうかを判断することができます。

適用対象

こちらもご覧ください