nlGetParamList
nlGetParamList(o_instance) =>l_parameters
OR
nlGetParamList(o_cellView) =>l_parameters
Description
Returns the list of parameters of the specified instance or cellview.
These parameters have been collected while the netlist was generated. In other words, all pPar and atPar expressions are collected. In addition, any atPar expressions from lower levels that are not resolved in the cellview are collected. Any interdependence of default values is handled by ordering the parameters so that those with independent default values are first.
Arguments
Value Returned
|
A list of parameters. Each element is a symbol, representing the name of the parameter. |
Examples
nlGetParamList( inst )
nlGetParamList( cv )
Return to top