
Indicates the user moved this control.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnSplitterMoved (nLeft [as Integer] nTop [as Integer] nWidth [as Integer] nHeight [as Integer] /) ) |
Copy Code |
|---|
; React to the splitter being moved
(princ c:MyForm_MyControl_OnSplitterMoved
(nLeft nTop nWidth nHeight /)
(princ "OnSplitterMoved(")
(princ nLeft)
(princ ", ")
(princ nTop)
(princ ", ")
(princ nWidth)
(princ ", ")
(princ nHeight)
(princ ")\n")
) |