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

TdxSpreadSheetHistory.RedoActions Property

Provides indexed access to the list of undone actions.

#Declaration

Delphi
property RedoActions[Index: Integer]: TdxSpreadSheetHistoryAction read;

#Property Value

Type
TdxSpreadSheetHistoryAction

#Remarks

Pass an index as the Index parameter to access the corresponding undone action. The index must be less than the RedoActionCount property value. A Redo procedure call moves the last action from RedoActions to the UndoActions list and reapplies the corresponding changes to the opened document.

Every time a user changes the opened document, the spreadsheet control records the corresponding action in the UndoActions list and clears the RedoActions list.

Note

A MaxActionCount property value decreased at runtime never deletes actions in the RedoActions list.

See Also