axlSetOutputUserDefinedData
axlSetOutputUserDefinedData(x_mainSDB t_testName t_outputName t_columnName t_columnValue) =>t/nil
Description
Sets the value in the user-defined column for the specified test name and output.
Arguments
|
Value to be set in the user-defined column for the specified output. |
Value Returned
|
The value is set for the specified output in the user-defined column. |
|
Examples
Sets the value Current < 1.5m for the output Current of test AC in the user-defined column myRemarks.
session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlSetOutputUserDefinedData(sdb "AC" "Current" "myRemarks" "Current < 1.5m")
=> t
Return to top