ansCdlPrintInstProps
ansCdlPrintInstProps(&_fpl_pairList)
Description
Enables printing of user-defined instance properties and also customizes the format in which the properties are printed in the netlist.
To print user-defined properties in the netlist, you must also use the 'instProps argument in the auCdlInstPrintOrder variable defined in the .simrc file.
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( ansCdlPrintInstProps(fp pairList) foreach( pair pairList artFprintf( fp "%s=%s " car(pair) artMakeString(cadr(pair)) )
))
Return to top