
Indicates that the selection is about to be changed.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnSelChanging (nSelIndex [as Integer] /) ) |
Copy Code |
|---|
; React to the selection about to change
(defun c:MyForm_MyControl_OnSelChanging
(nSelIndex /)
(princ "OnSelChanging(")
(princ nSelIndex)
(princ ")\n")
) |