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

axlSetDefaultCornerEnabled

axlSetDefaultCornerEnabled( 
x_testHandle 
g_enable 
) 
=> 1 / 0 

Description

Enables or disables the default (nominal) corner for the specified test. The program creates a nominal corner when you create a test. This corner represents the absence of corner-specific information.

Arguments

x_testHandle

Test handle.

g_enable

Enable flag.
Valid Values are:

  • nil: Disables the default corner for the test.
  • any other value: Enables the default corner for the test.

Value Returned

1

Successful operation.

0

The command was unsuccessful.

Examples

The following example shows how to disable the nominal corner for a specific test:

s1 = axlGetWindowSession()
=>"session0"
x_mainSDB=axlGetMainSetupDB( s1 )
=>1001
testHandle = axlGetTest( x_mainSDB "test1" )
=>1005
axlSetDefaultCornerEnabled(1005 nil)
=>1

You can use the axlSetDefaultCornerEnabled function to enable or disable the nominal corner for a test in a SKILL trigger code.

Related Topics

axlCreateSession

axlGetTest

axlSetMainSetupDB


Return to top
 ⠀
X