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

relxEnableDiscField

relxEnableDiscField(
r_formObject
t_disclosureName
g_enableBoolean
)
=> t / nil

Description

Enables or disables the specified disclosure in the Reliability Options form.

Arguments

r_formObject

The form object: relxOptionForm.

t_disclosureName

Name of the disclosure to be enabled or disabled.

For example, Age Modeling

g_enableBoolean

Specifies whether to enable or disable the specified disclosure.

Possible values are:

  • t: Enables the disclosure.
  • nil: Disables the disclosure.

Value Returned

t

The disclosure is enabled.

nil

The disclosure is disabled.

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