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
Value Returned
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