Statement: Condition, Type: Supporting
Any Record Data
Format: initial-condition-statement Any Record Data 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:
-
integer, All Bets, All Outside, All Inside, Record Data, Record Layout, Record Data Index, Record Layout Index, Record Layout Count
-
any roulette table layout identifiers
-
Description
The Any Record Data identifier instructs the designed system that you are referencing the data field of all data records that have been created.
When using the data record in a condition statement, the system will read the data 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 data value of more than 5 and if so, place two layouts bets. The following example will perform this task.
RX Script | Copy Code |
---|---|
If Any Record data > 5 begin Put 5 units on Red Put 15 units on Column B end |