getFormFieldValue()

The converseLib.getFormFieldValue() system function returns the current value in the form for the field name defined by the variable fieldName. This function will not return the initial value defined on the text form. The contents of the field name variable is used to dynamically look up the associated form field variable at execution time.

Syntax

  converseLib.getFormFieldValue(textForm TextForm , fieldName string in [,occurrence int in])
  returns(result string)
textform
The specific text form that contains the field to be dynamically looked up is on.
fieldName
The string variable that contains the EGL variable name of the text field that is to be dynamically looked up.
occurrence
The optional occurrence integer is used to indicate which array element is to be used.
result
A string value that contains the represents the current value of the dynamically looked up form field variable. This value is trimmed of the right side spaces.