vfoSetParams
vfoSetParams(
d_inst
l_paramlist
)
=> t / nil
Description
Sets the value of multiple parameters in a single call. The l_paramlist argument contains a list of parameter name and value pairs.
Arguments
|
d_inst
|
The ID of the fluid Pcell instance for which the parameter values are to be set.
|
|
l_paramlist
|
The list of parameter name and value pairs to be set. The l_paramlist argument should be specified as a list:
(list (<s_param1> <value>) list (<s_param2> <value>)...)
|
Value Returned
|
t
|
The values of the parameters are successfully set.
|
|
nil
|
The values of the parameters could not be set.
|
Example
vfoSetParams(I1 '(("xContSpacing" 0.1) ("xContWidth" 0.12)))
=> t
Return to top