WWW.NNC.IR
Macro Reference
702
Vision System FH/FZ5 Series
User’s Manual (Z340)
SetGlobalData
Sets the global data.
Format
SetGlobalData <dataIdent>, <data>
Parameter
Return value
None.
Description
Sets the value specified in the <data> parameter in the global data with the identification name specified in
the <dataIdent> parameter.
If global data with the specified identification name does not exist, global data with the identification name
specified in the <dataIdent> parameter is added, and the value specified in the <data> parameter is set in the
added data.
If an incorrect data type is specified for a parameter, a "Type mismatch" error will occur.
If a character string longer than 255 characters is specified in the <dataIdent> parameter, a "String too long"
error will occur.
If the format is written incorrectly, such as writing the macro function name incorrectly, omitting a comma, or
omitting a half-width space, a "Syntax error" error will occur.
Usage Cautions
• None.
Example
Sets 1 as the value in the global data with the identification name "ABC".
Useable Modules
Unit Calculation Macro / Scene Control Macro / Communication Command Macro / Unit Macro
Parameter
name
Data type Description
<dataIdent>
Character
string type
Identification name of the global data to set the value
<data>
Integer type
Double
precision real
number data
type
Character
string type
Value set in the global data
Rem Set 1 in the value of the global data "ABC".
SetGlobalData "ABC", 1
Rem Get the value (integer value) set in the global data "ABC", and store in the variable DATA&.
GetGlobalData "ABC", DATA&