Command EN Version 3.04

SET VAR SHARED

Syntax

SET VAR SHARED:VariableName,Item,DataTyp,ListSeperator;

Description

Attaches a global variable to the processing (analog) (VariableName[SHARED]:=Item;).
DataTyp returns the DatenTyp of the variable and a ListSeperator (always one line only) returns the separating symbol for a list.

Possible Data Types (DataTyp):
TEXT
NUMBER
FLOAT
TEXTLIST
NUMBERLIST
FLOATLIST

Example:

SET VAR:"Test","Hello",TEXT,"*";
END;

Assigns the variable

Test[SHARED]

to the text value "Hello".