Spread.Sheets Documentation
DragDropBlock type
GC.Spread.Sheets.Events Namespace : DragDropBlock type
Occurs when the user is dragging and dropping a range of cells.
Example
//This example creates log text for the DragDropBlock event.
// Use IE to see the console log text
var activeSheet = spread.getActiveSheet();
activeSheet.bind(GC.Spread.Sheets.Events.DragDropBlock, function (e, args) {
        console.log("From Column:" + args.fromCol);
        console.log("From Row:" + args.fromRow);
        console.log("To Column:" + args.toCol);
        console.log("To Row:" + args.toRow);
    });
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.DragDropBlock

See Also

Reference

GC.Spread.Sheets.Events Namespace