Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Show Contents List

...

Get the value from a field on a RAMP screen.
Syntax
Define_Com Class(#vf_sy122) Name(#myscreen_wrapper) Parent(#COM_OWNER)
#myscreen_wrapper.getvalue From(sField) Value(sValue)
 
Parameters

From

Char 256 – Required

String that contains the RAMP field name to get the value from.

 |
 
Return Value

Value

Variant – Required

Returns the value of the field as a string or number.

 |
 
Examples
 
Define_Com Class(#vf_sy122) Name(#myscreen_wrapper) Parent(#COM_OWNER)
#myscreen_wrapper.getvalue From('uSurname') Value(#surname.value)
 
Show Contents List