slaGroupAsParametricSet
slaGroupAsParametricSet(g_setupName l_varNames) =>t_setName/ nil
Description
Groups the variables as parametric set in sweep setup in the setup library view that is opened using the slaOpenOrCreateView function in editable mode.
Arguments
Value Returned
|
The sweep setup with the specified name does not exist, or the command failed. |
Examples
Opens a setup library view in editable mode and groups the variables as a parametric set.
slaOpenOrCreateView("test" "ProjectSetup" "setupLib")
=> t
Returns nil when invalid arguments are specified while grouping variables as a parametric set.
slaGroupAsParametricSet("SweepSetup1" list("var1"))
WARNING (ADE-2342): At least two variables or parameters should be selected to make a parametric set.
=> nil
slaGroupAsParametricSet("SweepSetup1" list("XXX1" "var1" "var2" "XXX2"))
ERROR (ADE-11414): Cannot run the function because the variable 'XXX1, XXX2' is invalid. Specify a valid variable name and rerun the function.
=> nil
Returns the name or ID of the parametric set when a valid argument is specified while grouping variables as a parametric set.
slaGroupAsParametricSet("SweepSetup1" list("var1" "var2"))
=> "0"
slaGroupAsParametricSet("SweepSetup1" list("var3" "var4" "var5"))
=> "1"
Related Topics
Setup Library Assistant Functions
Return to top