
Indicates that the user has clicked the Preferances dialog box's OK button.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnOK () ) |
Copy Code |
|---|
; React to the user that pressed OK (defun c:MyForm_OnOK () (princ "OnOK\n") ) |