
Indicates the form is about to be closed.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnClose () ) |
Dockable, FileDialog, Modal, Modeless.
Copy Code |
|---|
; React to the user closed the dialog (defun c:MyForm_OnClose () (princ "OnClose\n") ) |