
Indicates that an item in the control as been deleted.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnDeleteItem (sItemText [as String] Key [as String or Tree Node Handle] /) ) |
Copy Code |
|---|
; React to the drag-and-drop operation ending in the control originating from
; another ObjectDCL control
(defun c:MyForm_MyControl_OnDeleteItem
(sItemText Key /)
(princ "OnDeleteItem(")
(princ sItemText)
(princ ", ")
(princ Key)
(princ ")\n")
) |