verifIsSnapshotVisible
verifIsSnapshotVisible(
g_sessionId
t_snapshotName
)
=> t / nil
Description
Returns the visibility status for the specified snapshot.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
Examples
The following example starts a Verifier session with a cellview 'test/snapshots/verifier' and returns the visibility status of a snapshot.
sess = verifOpenCellView("test" "snapshots" "verifier")
=> 0
verifIsSnapshotVisible(sess "snap1")
=> t
verifIsSnapshotVisible(sess "snap2")
=> nil
verifIsSnapshotVisible(sess "invalid-snap")
*WARNING* (VERIFIER-10003): Cannot find snapshot 'invalid-snap' as there is no snapshot with this name.
Use a valid name and try again.
=> nil
Related Topics
Return to top