relxDisplayDiscField
relxDisplayDiscField(r_formObject t_disclosureName g_displaybleBoolean) =>t/nil
Description
Shows or hides the specified disclosure in the Reliability Options form.
Arguments
Value Returned
Examples
To hide the Age Modeling disclosure from the Modeling tab on the Reliability Options form, add the following SKILL code in the .cdsinit file:
(defun relxCustomizeDisplayOrEnableStatus (relxOptionForm)
relxDisplayDiscField(relxOptionForm "Age Modeling" nil)
)
The Age Modeling disclosure is hidden from the Modeling tab on the Reliability Options form:

To hide the Hot-Carrier Injection Modeling disclosure and to show the Age Modeling disclosure in the Modeling tab in the Reliability Options form, add the following SKILL code in the .cdsinit file:
(defun relxCustomizeDisplayOrEnableStatus (relxOptionForm)
relxDisplayDiscField(relxOptionForm "Hot-Carrier Injection Modeling" nil) relxDisplayDiscField(relxOptionForm "Age Modeling" t)
)
The Hot-Carrier Injection Modeling disclosure is hidden and the Age Modeling disclosure is shown on the Modeling tab in the Reliability Options form:

Return to top