Statement: Condition, Type: Supporting
Any Record Layout
Format: initial-condition-statement Any Record Layout support-condition dest-support-condition
where
-
initial-condition-statement = any valid condition statement that use these identifiers listed below
-
support-condition = any one the valid series of supporting condition identifiers listed below:
-
dest-support-condition = any one of the valid destination supporting condition identifiers listed below:
-
any roulette table layout identifiers
Description
The Any Record Layout identifier instructs the designed system that you are referencing the layout field of all data records that have been created.
When using the data record in a condition statement, the system will read the layout values from each data record, perform comparison against another supporting condition identifier to produce a logical true or false result. If any of those data records outcome is evaluated as true the program control is passed to the body of the condition block.
For more information, see Data Records.
Example
We want to determine if any of our data records contain a layout value that is equal to the Number 1 layout and if so, increment the bet to Number 1. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Any Record layout = Number 1 begin Add 1 to Number 1 end |