Prefix

Takes a single string as parameter, which is then appended to each line in the code block.

Description:

Prefix allows the user to attach multiple strings to a single statement without having to retype the statement many times.

The parameter at the top takes the MOX statement along with any parameters for that statement that are used in each instance of the statement. Then all strings written on each line below the Prefix are appended to the MOX statement in sequence. Prefix is commonly used withBuild

Usage:

Prefix      MOXStatement [... RepeatParameters ...]
      [... UniqueParameters ...]
      [... UniqueParameters ...]
End Prefix

Examples:

Prefix    Build "", "ToDo.Item.Reorder", "ToDo.Item.Reorder",
    ((NbSp$ 2) & ""), "Order.Other"
    (""), "Order.Other"
    (""), "Order.Other"
    (""), "Order.Other"
End Prefix

 is functionally the same as

Build "", "ToDo.Item.Reorder", "ToDo.Item.Reorder", ((NbSp$ 2) & ""), "Order.Other"
Build "", "ToDo.Item.Reorder", "ToDo.Item.Reorder", (""), "Order.Other"
Build "", "ToDo.Item.Reorder", "ToDo.Item.Reorder", (""), "Order.Other"
Build "", "ToDo.Item.Reorder", "ToDo.Item.Reorder", (""), "Order.Other"