ObjectDCL Banner

OnReleasedCapture Event

Description

Indicates that the mouse capture has been released.

Parameters

nValue
Integer identifying the new value of the control.

AutoLISP Syntax

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

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnReleasedCapture 
                 (nValue [as Integer] /)
     
)

Applies For

SliderBar.

Example

CopyCode imageCopy Code
; React to the slider being moved
(princ c:MyForm_MyControl_OnReleasedCapture
                 (nValue /)
     (princ "OnReleasedCapture(")
     (princ nValue)
     (princ ")\n")
)