The pre-stage processes are used to perform actions on all the rows before the stage takes place (like sorting, or enabling/disabling a row).

 

Example of a pre stage section:

 

<PreStage>

 <Process>

         <Condition>

                 <Line>True</Line>

         </Condition>

         <Command>

                 <Line>LocationList.SetActive(False, True)</Line>

         </Command>

         <ActOnEachLocation>True</ActOnEachLocation>

 </Process>

</PreStage>

 

XML Tag

Description

PreStage

There is one PreStage tag per Stage section. The PreStage tag holds all of the Process tags.

Process

The Process tag is used to group each process together. There is one process tag for each process.

ActOnEachLocation

The ActOnEachLocation tag accepts either True or False. If set to true, the process will run for each row of the location list. If false, the process will only run once for the entire list.

Condition

The Condition is a boolean expression that determines if the command runs.

Command

The Command is an expression that acts on the location list. These commands are specific to the location list.