
Indicates that the form is reacting to a change in the active AutoCAD DWG document.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnDocActivated () ) |
Copy Code |
|---|
; React to the change in active document (defun c:MyForm_OnDocActivated () (princ "OnDocActivated\n") ) |