Loop Dialog: lets you to define new loop or edit existing loops.
To make a “For” statement select “For” radio button and choose a variable and range, for example in loop
“for index = 0 to usegments+1 do (…)”
variable is “index”, start is “0” and end is “usegments+1”.in case of stepped loops the Step variable must be set. For the “While” Statements, radio button should be in “While” status and condition must be defined. For instance we assume
“While (A<5) do (…)”, Condition is “A<5”
Note 1: don’t use global variables or preset variables as a loop variable.
|