slaUngroupParametricSet
slaUngroupParametricSet(
g_setupName
g_setId
)
=> t / nil
Description
Ungroups the parametric set from a sweep setup 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". |
Value Returned
|
The sweep setup or parametric set 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
Returns nil if invalid arguments are specified while ungrouping a parametric set.
slaUngroupParametricSet("SweepSetup1" "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
Returns t if a valid argument is specified while ungrouping variables from a parametric set.
slaUngroupParametricSet("SweepSetup1" 0)
=> t
Related Topics
Setup Library Assistant Functions
Return to top