Links
EControl Syntax Editor SDK
TBtnSyntaxEdit.OnDragOver Property

Occurs when the user drags an object over a control.

property OnDragOver;

Use an OnDragOver event to signal that the control can accept a dragged object so the user can drop or dock it. 

 

Within the OnDragOver event handler, change the Accept parameter to false to reject the dragged object. Leave Accept as true to allow the user to drop or dock the dragged object on the control. 

 

To change the shape of the cursor, indicating that the control can accept the dragged object, change the value of the DragCursor property for the control before the OnDragOver event occurs. 

 

The Source is the object being dragged, the Sender is the potential drop or dock site, and X and Y are screen coordinates in pixels. The State parameter specifies how the dragged object is moving over the control. 

 

Note: Within the OnDragOver event handler, the Accept parameter defaults to true. However, if an OnDragOver event handler is not supplied, the control rejects the dragged object, as if the Accept parameter were changed to false. 

Copyright (c) 2004-2011. All rights reserved.
What do you think about this topic? Send feedback!