RichTextBox.RedoActionName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取当调用 Redo() 方法后,可以重新应用到控件的操作名称。
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
属性值
一个字符串,表示发出对 Redo() 方法的调用后执行的操作名称。
- 属性
示例
下面的代码示例演示如何使用 CanRedo 和 RedoActionName 属性和 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
注解
如果此属性返回空字符串 (“”) ,则无法重新应用控件的操作。 可以使用此方法来确定控件中 RichTextBox 撤消的最后一个操作,然后在对方法的调用 Redo 时重新应用于控件。 可以使用该属性确定是否重新应用控件 CanRedo 的任何操作。