GcSpread.Sheets.UndoRedo Namespace > DragDropUndoAction type : DragDropUndoAction Constructor |
true
copy; otherwise, false
means to cut.
true
inserts the drag data in the drop row or column.
var instance = new GcSpread.Sheets.UndoRedo.DragDropUndoAction(sheet, dragMoveExtent, copy, insert, option);
function DragDropUndoAction( sheet : Sheet, dragMoveExtent : DragDropExtent, copy : boolean, insert : boolean, option : CopyToOption ) : DragDropUndoAction;
true
copy; otherwise, false
means to cut.true
inserts the drag data in the drop row or column.//Add data for (var col = 1; col < 6; col++) { for (var row = 2; row < 11; row++) { activeSheet.setValue(row, col, row + col); } } $("#button1").click(function () { spread.allowUndo(true); var dd = new GcSpread.Sheets.UndoRedo.DragDropExtent(2, 1, 12, 2, 2, 2); var action = new GcSpread.Sheets.UndoRedo.DragDropUndoAction(activeSheet, dd, true, false, GcSpread.Sheets.ClipboardPasteOptions.Values); activeSheet.doCommand(action); }); <input type="button" id="button1" value="button1"/>