Product Documentation
Virtuoso ADE Verifier SKILL Reference
Product Version IC23.1, November 2023

verifRemoveImage

verifRemoveImage(
g_sessionId 
t_fileName
)
=> t / nil

Description

Removes the given image file from the images directory of the Verifier cellview.

Arguments

g_sessionId

Integer, string number, or window specifying the Verifier session ID. For example, 0, "0", or window(2).

t_fileName

The name of the file to be removed.

Value Returned

t

The image file is removed successfully.

nil

The image file does not exist or could not be removed.

Examples

Opens a Verifier cellview and removes an image file from the current session.

uid = verifOpenCellView("test" "sample" "verifier")
=> 0

Adds file.png from the current directory to the session.

verifAddImage(sess "file.png")
=> "images/file.png"
verifGetImages(sess)
=> ("file.png")
verifRemoveImage(sess "file.png") ;
=> t
Returns nil if the file does not exist.
verifGetImages(sess)
=> nil
verifRemoveImage(sess "file.png")
=> nil

Related Topics

verifAddDocument

verifAddImage

verifDocumentExists

verifGetDocuments

verifGetImages

verifImageExists

verifRemoveDocument


Return to top
 ⠀
X