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

Represents a multiple undo point in the document model, allowing for the grouping of multiple undo operations into a single action that can be reverted or redone collectively.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class MultipleUndoPoint

Inheritance: objectMultipleUndoPoint

Constructors

Initializes a new instance of the MultipleUndoPoint class.

C#
public MultipleUndoPoint()

Initializes a new instance of the MultipleUndoPoint class with the specified display text and undo stack index.

C#
public MultipleUndoPoint(string displayText, int undoStackIndex)
Parameters:displayTextstring

The display text associated with the multiple undo point.

undoStackIndexint

The zero-based index indicating the position of the undo point within the undo stack.

Properties

Gets the display text of the multiple undo point.

C#
public string DisplayText { get; set; }

Gets or sets the index of the undo stack for the multiple undo point.

C#
public int UndoStackIndex { get; set; }
Property Value:

The zero-based index that indicates the position of the undo point within the undo stack.