SpreadJS Documentation
redo Method
Performs a redo of the most recently undone edit or action.
Syntax
var value; // Type: any
value = GcSpread.Sheets.SpreadActions.redo();
function redo() : any;
Example
This example uses the undo or redo action.
var sheet = spread.getActiveSheet();
            $("#testUndo").click(function () {
                GcSpread.Sheets.SpreadActions.undo.apply(sheet);
            });
            $("#testRedo").click(function () {
               GcSpread.Sheets.SpreadActions.redo.apply(sheet);
            });
See Also

Reference

SpreadActions class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.