ansCdlPrintInheritedParams
ansCdlPrintInheritedParams(&_fpl_pairList)
Description
Customizes how inherited parameters are written in the auCdl netlist.
Arguments
|
File handle used to write the string in the netlist using the |
|
|
List of property name and property value pairs that should be evaluated. |
Value Returned
Examples
procedure(ansCdlPrintInheritedParams(fp pairList)
foreach( param pairList
unless( !cadr(param)
artFprintf( fp "%s=%s " car(param) artMakeString(cadr(param) ) )
)
)
)
Return to top