dbOpenPanicCellView
dbOpenPanicCellView(gt_lib t_cellName t_viewName[t_version[t_mode[d_contextCellView] ] ] ) =>d_cellView/ nil
Description
Opens a saved panic cellview from a physical panic file with extension .oa-. The cellview .oa- opens in read mode only. You can then use the dbSave() function to save it to a new cellview, or call the dbReopen() function to reopen it in the append mode and then call the dbSave() function to save the cellview back to disk.
Arguments
Values Returned
Examples
If panic cellview exists in the "layout" view of "cellA" in library "test" open the cellview for read.
cellview = dbOpenPanicCellView("test" "cellA" "layout")
dbSave(cellview "test" "cellA" "layout_panic")
dbReopen(cellview "a")
dbSave(cellview)
Return to top