Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • S (start)

  • E (end)

  • I (increment)

  • CTRL (control parameter)

Syntax

Code Block
languagexml
...
...
<O T="Repeat"
...
</O>

Example

Code Block
languagexml
<O N="Replicate" T="Project" Category="Core Objects">
    <!-- created by ParamML Examples on 26.01.2023 -->
    <O N="Recap" T="Repeat" S="0" E="3" I="1" CTRL="j" j="0">
        <P N="Result" V="3^j" />
    </O>
    <O T="Design Code">
        <P N="RecapObjectList" V="Recap" />
        <P N="RecapResult0" V="Recap[0].Result" />
        <P N="RecapResult1" V="Recap[1].Result" />
        <P N="RecapResult2" V="Recap[2].Result" />
        <P N="RecapResult3" V="Recap[3].Result" />
        <!-- -l- -->
        <P N="Result0" V="3^0" />
        <P N="Result1" V="3^1" />
        <P N="Result2" V="3^2" />
        <P N="Result3" V="3^3" />
    </O>
</O>

The above codes give exactly the same results as below.

...