GcSpread.Sheets Namespace > Events type : DragDropBlockCompleted Event |
var instance; // Type: Events instance.DragDropBlockCompleted = function(sheet, sheetName, fromRow, fromCol, toRow, toCol, rowCount, colCount, copy, insert, copyOption) { };
$("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.DragDropBlockCompleted, function (e, args) { alert("From Column (" + args.fromCol + ")"); });