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

slaRemoveFromParametricSet

slaRemoveFromParametricSet(
t_setupName
g_setId
t_varName 
)
=> t / nil

Description

Removes a variable from the specified parametric set in the setup library view that is opened using the slaOpenOrCreateView function in edit mode.

Arguments

t_setupName

The name of the sweep setup.

g_setId

An integer or string number to denote the parametric set ID. For example, 1 or "1".

t_varName

The name of the variable to be removed from the specified parametric set.

Value Returned

t

The variable is removed from the specified parametric set.

nil

The sweep setup, parametric set, or variable with the specified name does not exist, or the command failed.

Examples

Opens a setup library view in edit mode.

slaOpenOrCreateView("test" "ProjectSetup" "setupLib") 
=> t

Invalid arguments are specified while removing a variable from the parametric set.

slaRemoveFromParametricSet("SweepSetup1" "XXX" "XXX")
=> ERROR (ADE-11414): Cannot run the function because the parametric set 'XXX' is invalid. Specify a valid parametric set name and rerun the function.
=> nil
slaRemoveFromParametricSet("SweepSetup1" 1 "XXX")
=> ERROR (ADE-11414): Cannot run the function because the variable 'XXX' is invalid. Specify a valid variable name and rerun the function.
=> nil

Valid arguments are specified while removing a variable from the parametric set.

slaRemoveFromParametricSet("SweepSetup1" 1 "var1")
=> t

Related Topics

slaAddToParametricSet

slaAreParametricSetsEnabled

slaGetParametricSets

slaGroupAsParametricSet

slaSetParametricSetsEnabled

slaUngroupParametricSet

Setup Library Assistant Functions


Return to top
 ⠀
X