
Indicates that the mouse capture has been released.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnReleasedCapture (nValue [as Integer] /) ) |
Copy Code |
|---|
; React to the slider being moved
(princ c:MyForm_MyControl_OnReleasedCapture
(nValue /)
(princ "OnReleasedCapture(")
(princ nValue)
(princ ")\n")
) |