ObjectDCL Banner

OnShow Event

Description

Indicates the form is about to be hidden or shown.

AutoLISP Syntax

Each dialog that throws this event has its handler that takes this generic form:

CopyCode imageCopy Code
(defun c:FormName_OnShow ()
     
)

Applies For

ConfigTab.

Example

CopyCode imageCopy Code
; React to the form being shown or hidden
(defun c:MyForm_OnShow ()
     (princ "OnShow\n")
)