Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

relxDisplayDiscField

relxDisplayDiscField(
r_formObject
t_disclosureName
g_displaybleBoolean
)
=> t / nil

Description

Shows or hides the specified disclosure in the Reliability Options form.

Arguments

r_formObject

The form object: relxOptionForm.

t_disclosureName

Name of the disclosure to be shown or hidden.

For example, Age Modeling

g_displayBoolean

Specifies whether to show or hide the specified disclosure.

Possible values are:

  • t: Shows the disclosure.
  • nil: Hides the disclosure.

Value Returned

t

The disclosure is shown.

nil

Returns nil the disclosure is hidden.

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
 ⠀
X