nlPrintSubcktEnd
nlPrintSubcktEnd(o_formattero_cellView) => t / nil
Description
For the nlAnalogFormatter class, prints the .ends keyword, followed by a space and the simulator name of the subcircuit, to mark the end of the subcircuit definition. It is called by nlPrintSubcktFooter.
Arguments
Value Returned
|
The keyword followed by a space and the simulator name is printed. |
|
Examples
The following example prints the .ends keyword
defmethod( nlPrintSubcktEnd ((formatter nlAnalogFormatter) cv) let( ( (nl nlGetNetlister(formatter)) nlPrintString( nl ".ends") nlPrintString( nl nlGetSimName (cv) ) nlPrintString( nl "\n") t
) )
=> t
Return to top