nlPrintInstParameters
nlPrintInstParameters(o_formattero_instance) => t / nil
Description
Prints the instance parameters in name=value pairs.
Arguments
Value Returned
Examples
The following example prints the instance parameters:
defmethod( nlPrintInstParameters
((formatter nlAnalogFormatter) inst)
let( (val (nl nlGetNetlister( inst) ) )
;; print properties
foreach( par nlGetParamList( inst)
unless(
val = nlGetParamStringValue( inst par)
nlPrintString( nl)
" " get_string (par) "=" val)
))))
=> t
Return to top