nlPrintSubcktTerminalList
nlPrintSubcktTerminalList(o_formattero_cellView) => t / nil
Description
Prints the simulator names of the signals connected to the terminals for a subcircuit definition and handles the signals resulting from inherited connections at a lower level .
Arguments
Value Returned
Examples
The following example prints the simulator names:
defmethod( nlPrintSubcktTerminalList ((formatter
xyzFormatter) cv )
let( ( (nl nlGetNetlister(formatter))
foreach( net nlGetSimTerminalNets( cv )
nlPrintString( nl " " )
nlPrintString( nl net ) )
) )
=> t
Return to top