OnDropEvent
Implements the external drag&drop emulation.
Syntax
expression.OnDropEvent(obj, obj.type, obj.x, obj.y, obj.html, obj.text);
expression
- A variable that represents a Api class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
obj | Required | object | The drag&drop emulation properties. | |
obj.type | Required | string | The drag&drop event type: onbeforedrop - an event that is fired when the selected text or element is dragged; ondrop - an event that is fired when the selected text or element is dropped on a valid drop target. | |
obj.x | Required | number | The horizontal coordinate (in pixels) at which the mouse was clicked, relative to the left edge of the entire document. | |
obj.y | Required | number | The vertical coordinate (in pixels) at which the mouse was clicked, relative to the top edge of the entire document. | |
obj.html | Required | string | The dragged HTML element. | |
obj.text | Required | string | The dragged text. |
Returns
This method doesn't return any data.