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
|
Integer, string number, or window specifying the Verifier session ID. For example, |
|
Value Returned
|
Value of the custom field is successfully set to the new value. |
|
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
Return to top