RichTextBox.CanRedo 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,通过该值指示在 RichTextBox 内发生的操作中是否有可以重新应用的操作。
public:
property bool CanRedo { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool CanRedo { get; }
[<System.ComponentModel.Browsable(false)>]
member this.CanRedo : bool
Public ReadOnly Property CanRedo As Boolean
属性值
如果有已撤消的操作可以重新应用到控件内容,则为 true
;否则为 false
。
- 属性
示例
下面的代码示例演示如何使用 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
注解
可以使用此属性来确定是否可以使用Redo该方法重新应用中RichTextBox撤消的最后一个操作。