dbFindOpenCellViewByName
dbFindOpenCellViewByName(t_libName t_cellName t_viewName) =>d_cellViewId/ nil
Description
Finds an opened cellview. Cadence recommends using this function instead of dbFindOpenCellView because you do not have to retrieve the database ID of the library.
Arguments
Values Returned
|
The database ID of the cellview with the specified library, cell, and view if the cellview is open in the memory. |
|
Examples
Finds the layout cellview testlib/cell/layout if it is open in the memory.
cv = dbFindOpenCellViewByName("testlib" "cell" "layout")
Related Topics
dbFindOpenCellView
Return to top