axlGetOutputUserDefinedData
axlGetOutputUserDefinedData(x_sdb t_testName t_outputName t_columnName) =>t_unit/""
Description
Returns the value saved in a user-defined column for the given output and test name combination.
Arguments
Value Returned
|
Value saved in the user-defined column for the specified output. |
|
Examples
The following example shows that delayRead1 < 78p is set in the user-defined column myColumn for the output delay_read1 of the test tran.
session=axlGetWindowSession()
=> "fnxSession0"
sdb=axlGetMainSetupDB(session)
=> 1001
axlGetOutputUserDefinedData(sdb "tran" "delay_read1" "myColumn")
=> "delayRead1 < 78p"
Return to top