Purpose

.GetStringvalue() retrieves the alphabetic data element associated with the Field object.
 

Object Type

Radio groups, combo boxes, edit boxes, list boxes, list box columns, and check boxes.

  

Syntax

ObjectReference.GetStringValue()
 

Operation

ObjectReference is the Tag Name for Field object whose associated data element is a string. It cannot be a variable and it is case sensitive.
 

Remarks

This property only has an affect when record iteration has begun and values have been assigned to the data elements (usually after file reads).  Do not use it in default logic, function in logic, etc.
 

Example

To retrieve a string value where CUSTOMER_NAME is a PROIV data element in the function, and  CUSTNAME is the Tag Name of a field in the function:

 

CUSTOMER_NAME = CUSTNAME.GetStringValue()

     

Comment on this topic

Topic ID: 510110