Siemens SINUMERIK 840DE sl Commissioning Manual page 749

Basesoftware and operating software
Hide thumbs Also See for SINUMERIK 840DE sl:
Table of Contents

Advertisement

Tag identifier
LET Continued
LET Continued
Easy XML
Programming Manual, 12/2017, 6FC5397-1DP40-6BA1
Meaning
Variable type struct:
This variable type contains a composition of variables that can be addressed using the
structure name. A structure can contain all variable types and structures.
Within the structure, a variable is declared with the "element" tag. The attributes of the tags
and the initialization correspond to the attributes and initialization of the let instruction.
<let name="name" type="struct">
<element name="<Name>" type="<Variable type>" />
...
...
...
</let>
Access to a variable of the structure is via the structure name and variable name. Both
names are separated by a point operator.
<op>
Structure_name.variable_name = value;
</op>
Example:
<let name="info" type="struct">
<element name="id" type="int" />
<element name="name" type="string" />
<element name="phone" type="string" />
</let>
<op>
info.id = 1;
info.name = _T"my name";
info.phone = _T"0034 45634";
</op>
Initialization of structures:
Structures can be initialized when the variables are created by specifying an initial value
for each structure element. In an array of structures, each structure must be separated from
the others by braces.
Generating user dialogs
1.7 XML identifier
31

Advertisement

Table of Contents
loading

This manual is also suitable for:

Sinumerik 840d sl

Table of Contents