
Indicates the form is being initialized and about to be shown.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnInitialize () ) |
ConfigTab, Dockable, FileDialog, Modal, Modeless.
Copy Code |
|---|
; React to the form being initialized (defun c:MyForm_OnInitialize () (princ "OnInitialize\n") ) |