Class MultipleUndoPoint
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.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class MultipleUndoPoint : Object
Constructors
MultipleUndoPoint()
MultipleUndoPoint(String, Int32)
Initializes a new instance of the MultipleUndoPoint class with the specified display text and undo stack index.
Declaration
public MultipleUndoPoint(string displayText, int undoStackIndex)
Parameters
System.String
displayText
The display text associated with the multiple undo point. |
System.Int32
undoStackIndex
The zero-based index indicating the position of the undo point within the undo stack. |
Properties
DisplayText
Gets the display text of the multiple undo point.
Declaration
public string DisplayText { get; set; }
Property Value
System.String
|
UndoStackIndex
Gets or sets the index of the undo stack for the multiple undo point.
Declaration
public int UndoStackIndex { get; set; }
Property Value
System.Int32
The zero-based index that indicates the position of the undo point within the undo stack. |