maeGetSetupLibrary
maeGetSetupLibrary( [ ?sessiont_session] ) =>t_cellviewName/ nil
Description
Retrieves the setup library view from the current or specified session.
Arguments
|
Name of the ADE Assembler session. If you do not specify this argument, the current session is used. |
Value Returned
|
The library/cell/view that contains the setup library cellview that is bound to the specified Assembler session. |
|
|
The ADE Assembler session does not contain a setup library cellview. |
Examples
The following example shows how to retrieve the setup library cellview name from the specified Assembler session.
Retrieves the setup library from the currently open maestro cellview.
maeGetSetupLibrary()
=> "amsPLL/Project45nm/setuplib"
Retrieves the setup library from the specified Assembler session.
sess = maeOpenSetup("opamp090" "full_diff_opamp_AC" "maestro")
maeGetSetupLibrary(?session sess)
=> "setupLibrary/projectSetup/setupLib"
Return to top