VALUE keyword

Set or get a value to an object. This value is not visible (hidden) and is useful to differentiate objects with a value.

Syntax

VALUE object, string
VALUE(object)

Parameters

  • object: the object to assign a value. (required);
  • string: the string value to store (required);

Examples

VALUE myImage, "bird" 'Set a value
IF VALUE(myImage) = "bird" THEN 'Get the value.

Go back to list of Keywords.