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

axlPutCorner

axlPutCorner( 
x_mainSDB 
t_cornerName 
) 
=> x_corner / nil 

Description

Adds a new corner by the given name and returns a handle to that corner. If a corner already exists with the same name, the function returns the handle to that corner.

Arguments

x_mainSDB

Setup database handle.

t_cornerName

Corner name.

Value Returned

x_corner

Handle to a corner.

nil

The command could not be run.

Example

The following example adds a new corner, testC, to the existing database and also assigns value to the VDD variable for that corner:

session = axlGetWindowSession()
=>"session0"
x_mainSDB=axlGetMainSetupDB( session )
=>1001
axlPutCorner(x_mainSDB "testC")
=>2080
axlPutVar(2080 "VDD" "2.0")
=>2082

Related Topics

axlCreateSession

axlSetMainSetupDB


Return to top
 ⠀
X