ObjectDCL Banner

OnDragnDropFromOther Event

Description

Indicates the user has just dragged and dropped a selection from the AutoCAD Drawing to this control.

AutoLISP Syntax

Each control that throws this event has its handler that takes this generic form:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnDragnDropFromOther ()
     
)

Applies For

BlockList, BlockView, DwgList, DwgPreview, GraphicButton, Grid (Hatch), Label, ListBox, ListView, PictureBox, SlideView, TextBox, TextButton, TreeControl.

Example

CopyCode imageCopy Code
; React to the drag-and-drop operation ending in the control originating
; from another source in the AutoCAD drawing
(defun c:MyForm_MyControl_OnDragnDropFromOther ()
     (princ "OnDragnDropFromOther\n")
)

See Also

OnDragnDropBegin, OnDragnDropFromControl, OnDragnDropToAutoCAD