Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

ansCdlPrintInstProps

ansCdlPrintInstProps(
&_fp 
l_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

&_fp

File handle used to write the string in the netlist using the artFprintf SKILL function.

l_pairList

List of property name and property value pairs that should be evaluated.

Value Returned

None

Examples

procedure( ansCdlPrintInstProps(fp pairList)
    foreach( pair pairList
     artFprintf( fp "%s=%s " car(pair) artMakeString(cadr(pair)) ) 
))


Return to top
 ⠀
X