New to Telerik UI for WPFStart a free 30-day trial

Represents a command that allows multiple undo operations in a RichTextBox. This command enables the user to revert back multiple changes made to the document.

Definition

Constructors

C#
public MultipleUndoCommand(RadRichTextBox editor)
Parameters:editorRadRichTextBox

Methods

Performs the execute action specific to the command.

C#
protected override void ExecuteOverride(object parameter)
Parameters:parameterobject

The command parameter.

Overrides: RichTextBoxCommandBase.ExecuteOverride(object)

Invoked when the document history has changed, allowing for updates to the undo functionality.

C#
public virtual void OnDocumentHistoryChanged(EventArgs e)
Parameters:eEventArgs

An EventArgs instance containing the event data.

Events

C#
public event EventHandler DocumentHistoryChanged