verifOpenCellView
verifOpenCellView(t_libName t_cellName t_viewName[ ?modeg_mode] [?openWindowg_openWindow] ) =>x_sessionId/ nil
Description
Opens the Verifier cellview and returns the session ID.
Arguments
Value Returned
Examples
The following example opens a Verifier cellview in a window.
sess = verifOpenCellView("test" "sample" "verifier")
=> 0
If a window is already open, the function brings the window to the front and returns the session ID.
sess2 = verifOpenCellView("test" "sample" "verifier")
=> 0
In the Design Management flow, if a window is already open, the function returns nil. No window is opened, but the session is still opened in non-graphical mode.
sess2 = verifOpenCellView("test" "sample" "verifier")
=> nil
sess3 = verifOpenCellView("test" "sample" "verifier2" ?mode "w")
=> 1
verifSaveSession(sess3)
verifCloseSession(sess3)
Reopens the cellview for edit without a window.
sess3 = verifOpenCellView("test" "sample" "verifier2" ?mode "a" ?openWindow nil)
=> 2
Related Topics
Verifier Session and Setup Functions
Return to top