OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: JTHWAMAN on July 19, 2008, 08:20:10 AM

Title: How triggers in PictureBox These OnDragnDrop Event ?
Post by: JTHWAMAN on July 19, 2008, 08:20:10 AM
How triggers in PictureBox These OnDragnDrop Event ?
OnDragnDropBegin
OnDragnDropFromControl
OnDragnDropFromOther
OnDragnDropToAutoCAD
Has the model to provide?
Requests to explain, thanks !!
Title: Re: How triggers in PictureBox These OnDragnDrop Event ?
Post by: Fred Tomke on July 25, 2008, 01:35:43 AM
Don't know if I understood you right but:

OnDragnDropBegin will be released if you press the left mouse button a bit longer on this control. It is called once until any other DragDrop event will be fired (to compare: OnMouseMove will be released every time an offset of the mouse position or a mouse button pressing will be detected).

OnDragnDropFromControl will be released if the pressed mouse button will be released onto this control after dragging anything from another OpenDCL control to this control.

OnDragnDropFromOther will be released if the pressed mouse button will be released onto this control after dragging objects from the current viewport to the form.

OnDragnDropToAutoCAD will be released if the pressed mouse button will be released onto a viewport after anything from another OpenDCL control.

I'm sure that you meant something different.

Fred