verifAreSnapshotsEnabled
verifAreSnapshotsEnabled(
g_sessionId
)
=> t / nil
Description
Checks if snapshots are enabled in the specified Verifier session.
Arguments
|
Integer, string number, or window specifying the Verifier session ID. For example, |
Value Returned
|
Snapshots are disabled in the specified Verifier session, or the command is not successful. |
Examples
The following example starts a Verifier session with a new cellview.
winId = deNewCellView("test" "snapshots" "verifier" "verifier" nil)
INFO (VERIFIER-8215): Started Verifier session '0'.
window:2
uid = winId->verifSession
=> 0
Checks if snapshots are enabled. By default, the snapshots are disabled.
verifAreSnapshotsEnabled(uid)
=> nil
verifSetSnapshotsEnabled(uid t)
=> t
verifAreSnapshotsEnabled(uid)
=> t
Related Topics
Return to top