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

relxEnableFormTab

relxEnableFormTab(
r_formObject
t_tabName
g_enableBoolean
)
=> t / nil

Description

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

Arguments

r_formObject

The form object: relxOptionForm.

t_tabName

Name of the tab to be enabled or disabled.

Possible values are:

  • Basic
  • Modeling
  • Degradation
  • Output

g_enableBoolean

Specifies whether to enable or disable the specified tab.

Possible values are:

  • t: Enables the specified tab.
  • nil: Disables the specified tab.

Value Returned

t

The tab is enabled.

nil

Returns nil the tab is disabled.

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