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

axlPutOutputNotation

axlPutOutputNotation(
x_sdb
t_testName
t_outputID
t_value
)
=> x_sdb / nil

Description

Sets the notation style for the specified output of the test.

Arguments

x_sdb

Handle to the main setup database.

t_testName

Name of the test in the setup database.

t_outputID

Name of the output.

t_value

Notation style to be set for the specified output

Valid values are:

  • default: Displays results using the default notation style specified in the Default Formatting Options form.
  • eng: Displays results in the engineering notation.
  • sci: Displays results in the scientific notation.
  • suffix: Displays results in the suffix notation.

Value Returned

x_sdb

Returns the handle to the output database when the notation style is successfully set.

nil

Notation style is not set for the specified output.

Examples

The following example sets the notation of the output Current of test AC to eng (engineering).

session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlPutOutputNotation(sdb "AC" "Current" "eng")
=> 2529

Return to top
 ⠀
X