Specifications

1
OUTLINE
2
SYSTEM
CONFIGURATION
3
SPECIFICATIONS
4
GT CONVERTER2
SCREEN LAYOUT
5
GT CONVERTER2
OPERATION METHODSAPPENDICES
Appendix 2 Conversion Specifications for GP-PRO/PB III Series
Appendix 2.8 D-Script
App - 24
8 Conversion specifications of descriptive expressions
The following indicates the conversion specifications of descriptive expressions.
: Convertible, : Inconvertible
9 Conversion specifications of functions
A function is developed in the location where it was called.
Descriptive expressions
Conversion
applicability
Conversion destination Remarks
if(Condition)
{
Processing
}
endif
if(Condition)
{
Processing;
}
------
if(Condition)
{
Processing 1
}
else
{
Processing 2
}
endif
if(Condition)
{
Processing 1;
}
else
{
Processing 2;
}
------
loop(Temporary)
{
Processing
}
endloop
while(Temporary)
{
Processing;
Temporary= Temporary - 1;
}
When Write value is set to a device other than
Temporary in a loop statement, the loop statement
will not be converted.
break break; ------
Processing 1
Processing 2
Processing 3
Processing A
Processing B
Processing C
D-Script that calls function
Called function (Function 1)
Processing 1
Processing 2
Processing A
Processing B
Processing C
Processing 3
GOT script
Converted by GT Conveter2
Conversion source
Call Function1
Called function (Function 1) is developed in the
position where the function is called (Call Function 1).
After conversion