relxEnableDiscField
relxEnableDiscField(r_formObject t_disclosureName g_enableBoolean) =>t/nil
Description
Enables or disables the specified disclosure in the Reliability Options form.
Arguments
|
Specifies whether to enable or disable the specified disclosure. |
Value Returned
Examples
To disable the Hot-Carrier Injection Modeling disclosure on the Modeling tab in the Reliability Options form, add the following SKILL code in the .cdsinit file:
(defun relxCustomizeDisplayOrEnableStatus (relxOptionForm)
relxEnableDiscField(relxOptionForm "Hot-Carrier Injection Modeling" nil)
)
The Hot-Carrier Injection Modeling disclosure is disabled on the Modeling tab in the Reliability Options form:

To enable the Hot-Carrier Injection Modeling disclosure and to disable the Age Modeling disclosure on the Modeling tab in the Reliability Options form, add the following SKILL code in the .cdsinit file:
((defun relxCustomizeDisplayOrEnableStatus (relxOptionForm) relxEnableDiscField(relxOptionForm "Hot-Carrier Injection Modeling" t)
relxEnableDiscField(relxOptionForm "Age Modeling" nil)
)
The Hot-Carrier Injection Modeling disclosure is enabled and the Age Modeling disclosure is disabled on the Modeling tab in the Reliability Options form:

Return to top