Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxUndoRedoManager Class

The TdxUndoRedoManager class provides the undo and redo capabilities for the layout control.

#Declaration

Delphi
TdxUndoRedoManager = class(
    TPersistent
)

#Remarks

This class allows you to manage a list of operations that can be sequentially undone or redone. In particular, you can perform the following operations using this interface:

  • Determine the number of available redo and undo operations (see the RedoCount and UndoCount properties).

  • Check whether the last redo or undo operation can be performed (see the CanRedo and CanUndo methods).

  • Perform the last redo or undo operation (see the Redo and Undo methods).

  • Clear the buffer of redo and undo operations (see the Clear method).

The TdxUndoRedoManager object is referenced by the control’s UndoRedoManager property.

#Inheritance

TObject
TPersistent
TdxUndoRedoManager
See Also