axlSetCornerTestEnabled
axlSetCornerTestEnabled(x_cornerHandlet_testName g_enableFlag) =>x_num/nil
Description
Enables or disables simulation of a test for the given corner. This function changes the status of the check box corresponding to a test in the column for the given corner.

Arguments
Value Returned
Examples
The following example shows how to enable the test AC for corner C0.
session = axlGetWindowSession()
=> "session0"
x_mainSDB = axlGetMainSetupDB(session)
=> 1001
x_cornerHandle = axlGetCorner(x_mainSDB "C0")
=> 3573
axlSetCornerTestEnabled(x_cornerHandle "AC" t)
=> 3979
Return to top