
Indicates the form has been resized.
Each dialog that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_OnSize (nWidth [as Integer] nHeight [as Integer] /) ) |
Dockable, FileDialog, Modal, Modeless.
Copy Code |
|---|
; React to the dialog that was resized
(defun c:MyForm_OnSize (nWidth nHeight /)
(princ "OnSize(")
(princ nWidth)
(princ ",")
(princ nHeight)
(princ ")\n")
) |