axlPutCorner
axlPutCorner(x_mainSDBt_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
Value Returned
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
Return to top