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
|
An integer or string number to denote the parametric set ID. For example, 1 or "1". |
|
|
The name of the variable to be removed from the specified parametric set. |
Value Returned
|
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
Setup Library Assistant Functions
Return to top