relxEnableFormTab
relxEnableFormTab(r_formObject t_tabName g_enableBoolean) =>t/nil
Description
Enables or disables the specified tab in the Reliability Options form.
Arguments
Value Returned
Examples
To disable the Basic and Output tabs in the Reliability Options form, add the following SKILL code in the .cdsinit file:
(defun relxCustomizeDisplayOrEnableStatus (relxOptionForm)
relxEnableFormTab(relxOptionForm "Basic" nil)
relxEnableFormTab(relxOptionForm "Output" nil)
)
The Basic and Output tabs are disabled in the Reliability Options form:

Return to top