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

axlSetCornerTestEnabled

axlSetCornerTestEnabled(
x_cornerHandle 
t_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

x_cornerHandle

Handle to the corner

t_testName

Name of the test

g_enableFlag

Enable or disable status

Value Returned

x_num

A handle to the corner.

nil

The command could not be run.

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
 ⠀
X