RichTextBox.RedoActionName 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 the name of the action that can be reapplied to the control when the Redo() method is called.
public:
property System::String ^ RedoActionName { System::String ^ get(); };
[System.ComponentModel.Browsable(false)]
public string RedoActionName { get; }
[<System.ComponentModel.Browsable(false)>]
member this.RedoActionName : string
Public ReadOnly Property RedoActionName As String
Property Value
A string that represents the name of the action that will be performed when a call to the Redo() method is made.
- Attributes
Examples
The following code example demonstrates how to use the CanRedo and RedoActionName properties, and the Redo method, to restrict a redo operation to any action except the deletion of text. This example requires that you have a form that contains a RichTextBox control and that an operation within the RichTextBox has been performed and undone before the code in this example is called.
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
Remarks
If this property returns an empty string (""), there is no operation available to reapply to the control. You can use this method to determine the last action undone in the RichTextBox control that can then be reapplied to the control when a call to the Redo method is made. You can determine whether there are any operations to be reapplied to the control by using the CanRedo property.