projects/wms-framework/src/lib/models/events/DragStartEventArgs.ts
Creates an instance of DragStartEventArgs.
Properties |
|
Public Cancel |
Type : boolean
|
Cancel the event. |
Public DragContent |
Type : any
|
DragContent |
Public SourceItem |
Type : any
|
Item that is being dragged. |
export class DragStartEventArgs {
/**
* Cancel the event.
*
* @public
* @type {boolean}
*/
public Cancel: boolean;
/**
* DragContent
*
* @public
* @type {any}
*/
public DragContent: any;
/**
* Item that is being dragged.
*
* @public
* @type {any}
*/
public SourceItem: any;
}