
Indicates the form is about to be hidden or shown.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnShow () ) |
Copy Code |
|---|
; React to the form being shown or hidden (defun c:MyForm_OnShow () (princ "OnShow\n") ) |