nlPrintSubcktFooterComments
nlPrintSubcktFooterComments(o_formattero_cellView) => t
Description
Prints the comments for the subcircuit footer by printing the string 'End of subcircuit definition.' preceded by the comment begin string.
Arguments
Value Returned
Examples
The following example prints subcircuit footer comments:
defmethod( nlPrintSubcktFooterComments ((formatter
xyzFormatter) cv)
let( (nl)
callNextMethod()
nl = nlGetNetlister(formatter)
nlPrintComment( nl "anything else")
) )
=> t
Return to top