
Indicates that the user has clicked the Preferences dialog box's Cancel button.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnCancel () ) |
Copy Code |
|---|
; React to the user that pressed Cancel (defun c:MyForm_OnCancel () (princ "OnCancel\n") ) |