ObjectDCL Banner

OnHelp Event

Description

Indicates that the user has clicked the Preferences dialog box's Help button.

AutoLISP Syntax

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

CopyCode imageCopy Code
(defun c:FormName_OnHelp ()
     
)

Applies For

ConfigTab.

Example

CopyCode imageCopy Code
; React to the user that pressed Help
(defun c:MyForm_OnHelp ()
     (princ "OnHelp\n")
)

See Also

OnCancel, OnOK