Undo and Redo in ASP.NET Core Spreadsheet
23 Mar 20211 minute to read
Spreadsheet provides the support to perform undo and redo operations. You can set allow-undo-redo
property as true
to enable undo redo feature. You can also use undoredo-step
property to limit the undo redo action.
NOTE
Default value of
undoredo-step
property is 20. You can perform 20 undo or redo actions.
Undo the last action
Undo reverses the last action you performed with spreadsheet. You can do this by following ways.
- Use Undo button of HOME tab in ribbon.
- Use “Ctrl + Z” key.
Redo the action
Redo reverses the last undo action you performed with spreadsheet. You can do this by following ways.
- Use Redo button of HOME tab in ribbon.
- Use “Ctrl + Y” key.