axlGetSessionCellName
axlGetSessionCellName(g_value) =>t_cellName/nil
Description
Returns the cell name associated with the session or setup database.
Arguments
Value Returned
|
Name of the cell corresponding to the given session name or setup database is returned. |
||
Examples
Returns the cell name associated with a session by using the session name.
session = axlGetWindowSession(hiGetCurrentWindow())
cellName = axlGetSessionCellName(session)
"adc_cascode_opamp_sim"
You can also get the cell name associated with a session by using the handle to database of that session, as shown below.
setupDBId= axlGetMainSetupDB(axlGetWindowSession(hiGetCurrentWindow()))
cellName = axlGetSessionCellName(setupDBId)
"adc_cascode_opamp_sim"
Related Topics
Return to top