Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

nlPrintInstParameters

nlPrintInstParameters( 
o_formatter 
o_instance 
) 
=> t / nil

Description

Prints the instance parameters in name=value pairs.

Arguments

o_formatter

The formatter object.

o_instance

The object representing the instance

Value Returned

t

The instance parameters are printed.

nil

There is an error.

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
 ⠀
X