axlGetNominalCornerTestEnabled
axlGetNominalCornerTestEnabled(
t_testHandle
)
=> t / nil
Description
Returns the status of the check box corresponding to the given test in the Nominal column on the Corners Setup form.
Nominal simulation for a test is run only if the following conditions are met:
- The check box before the column heading in the Nominal column on the Corners Setup form is selected.
- The check box before the test name in the row header for the tests is selected.
-
The check box in the cell corresponding to the given test in the Nominal corner is enabled.

Arguments
|
Handle to the test for which you need to check whether nominal simulation can be run. |
Value Returned
Examples
The following example returns the status of the nominal corner:
session = axlGetWindowSession()
=>"session0"
x_mainSDB=axlGetMainSetupDB( session )
=>1001
x_testHandle = axlGetTest(x_mainSDB "AC")
axlGetNominalCornerTestEnabled(x_testHandle)
=> t
Related Topics
Return to top