nlPrintStringNoFold
nlPrintStringNoFold(o_netlister, [@restt_args] ) => t / nil
Description
Prints the string arguments to the file, like the function nlPrintString. This function does the required prefixing and postfixing, but does not fold the line until a newline character or maxLineLength is encountered. While in a ’no fold’ print mode, calls cannot be made to nlPrintString.
Arguments
Value Returned
Examples
The following example displays an indent string for the instance statement:
nlPrintStringNoFold( netlister, "my string\n" )
=> t
Return to top