GcSpread.Sheets.UndoRedo Namespace > DragDropExtent type : DragDropExtent Constructor |
var instance = new GcSpread.Sheets.UndoRedo.DragDropExtent(fromRow, fromColumn, toRow, toColumn, rowCount, columnCount);
function DragDropExtent( fromRow : number, fromColumn : number, toRow : number, toColumn : number, rowCount : number, columnCount : number ) : DragDropExtent;
//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"/>