| GC.Spread.Sheets 名前空間 > Events タイプ : DragDropBlockCompleted イベント |
| Javascript (Usage) | |
|---|---|
var instance; // Type: Events instance.DragDropBlockCompleted = function(sheet, sheetName, fromRow, fromCol, toRow, toCol, rowCount, colCount, copy, insert, copyOption) { }; | |
| Javascript (Specification) | |
|---|---|
DragDropBlockCompleted = function ( sheet : Worksheet, sheetName : string, fromRow : number, fromCol : number, toRow : number, toCol : number, rowCount : number, colCount : number, copy : boolean, insert : boolean, copyOption : CopyToOptions ) { }; | |
activeSheet.bind(GC.Spread.Sheets.Events.DragDropBlockCompleted, function (e, args) { alert("From Column (" + args.fromCol + ")"); });