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

verifSetCustomFieldValue

verifSetCustomFieldValue(
g_sessionId
t_fieldName
t_fieldValue
)
=> l_set / nil

Description

Sets the value of a custom field in a Verifier session.

Custom fields can be specified using the Preferences form. To access the Preferences form from the Verifier graphical user interface, choose Edit — Preferences.

Arguments

g_sessionId

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

t_fieldName

Name of the custom field.

t_fieldValue

Value of the custom field.

Value Returned

l_set

Value of the custom field is successfully set to the new value.

nil

Value of the custom field is not set.

Examples

Consider that you have defined the custom fields Manager Name and E-mail Address for a verification project.

The following example opens a Verifier cellview of the project and sets the values in the custom fields.

uid = verifOpenCellView("test" "results" "verifier")
=> 0
verifGetCustomFieldNames(uid)
=> ("Email" "VerificationManager")
verifSetCustomFieldValue(uid "VerificationManager" "Harry")
=> t
verifGetCustomFieldValue(uid "VerificationManager")
=> "Harry"

Related Topics

verifGetCustomFieldNames

verifGetCustomFieldValue

verifGetReqCustomFieldNames

verifGetReqCustomFieldValue

verifSetReqCustomFieldValue


Return to top
 ⠀
X