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

nlPrintSubcktParameters

nlPrintSubcktParameters( 
o_formatter 
o_cellView 
) 
=> t / nil

Description

Prints the passed parameters for the subcircuit definition.

Arguments

o_formatter

The formatter object.

o_cellView

The object representing the cellview.

Value Returned

t

The parameters are printed.

nil

There is an error.

Examples

The following example prints the subcircuit definition parameters:

defmethod( nlPrintSubcktParameters 
((formatter nlAnalogFormatter) cv)
let( ((plist nlGetParamList( cv))
(nl nlGetNetlister( formatter)))
when( plist
nlPrintString( nl ".PARAMETERS")
foreach( param plist
cond(
((cadr param) nlPrintString( nl " "
(car param) "=" (cadr param)))
(t nlPrintString( nl " " (car param)))
)
)
nlPrintString( nl "\n")
)))
=> t


Return to top
 ⠀
X