verifMoveImp
verifMoveImp(
g_sessionId
t_lib
t_cell
t_view
t_history
[ x_itemIndex ]
)
=> t / nil
Description
Moves an implementation to the specified location in a Verifier session.
Arguments
|
g_sessionId
|
Integer, string number, or window specifying the Verifier session ID. For example, 0, "0", or window(2).
|
|
t_lib
|
The library name of the implementation.
|
|
t_cell
|
The cell name of the implementation.
|
|
t_view
|
The view name of the implementation.
|
|
t_history
|
The history name of the implementation.
|
|
x_itemIndex
|
The item index of the implementation in the implementations list.
If you do not specify the index, its default value 0 is used, which moves the specified implementation as the last entry.
|
Value Returned
|
t
|
The implementation is moved to the specified location.
|
|
nil
|
The implementation is not moved to the specified location.
|
Examples
The following example opens a Verifier cellview and lists the implementation cellviews. It moves the last implementation cellview to the specified location.
uid = verifOpenCellView("test" "sample" "verifier")
=> 0
Moves the implementation to be the last item.
verifMoveImp(uid "opamp090" "full_diff_opamp_AC" "maestro" "Active")
=> t
Moves the implementation to be the first item.
verifMoveImp(uid "opamp090" "full_diff_opamp_AC" "maestro" "Active" 1)
Related Topics
verifAddCustomOutput
verifAddImp
verifMoveImp
verifOverwriteSpec
verifRemoveImp
verifSetImpData
Implementation Functions
Return to top