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

nlPrintSubcktName

nlPrintSubcktName( 
o_formatter 
o_cellView 
) 
=> t / nil

Description

Prints a space and the simulator name of the subcircuit. This method is used by nlSubcktHeader.

Arguments

o_formatter

The formatter object.

o_cellView

The object representing the cellview.

Value Returned

t

The simulator name is printed.

nil

There is an error.

Examples

The following example prints the simulator name of the subcircuit:

defmethod( nlPrintSubcktName ((formatter nlAnalogFormatter) cv)
    let( ( (nl nlGetNetlister(formatter))
    nlPrintString( nl " ")
    nlPrintString( nl nlGetSimName (cv) )
    t ) 
)


Return to top
 ⠀
X