verifGetImages
verifGetImages(g_sessionId[g_relative] ) =>l_names/ nil
Description
Returns the list of image files that have been added to images directory of the Verifier cellview.
Arguments
Value Returned
Examples
Opens a Verifier cellview and retrieves the list of image files from the current session.
uid = verifOpenCellView("test" "sample" "verifier")
=> 0
verifGetImages(sess)
=> nil
Gets the images. In the current example, there are none.
verifAddImage(sess "file.png")
=> "images/file.png"
Adds file.txt from the current directory to the session.
verifAddDocument(sess "wave.gif")
=> "images/spec.pdf"
Gets the list of images.
verifGetImages(sess)
=> ("file.png" "wave.gif")
Gets the list of images with their relative locations within the Verifier cellview.
verifGetImages(sess t)
=> ("images/file.png" "images/wave.gif")
Related Topics
Return to top