Skip to main content

TdxSpreadSheetHistory.RedoActions Property

Provides indexed access to the list of undone actions.

Declaration

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