IfRows
A set of commands that are performed on each row in the dataframe when a logical expression is true for that row. May also include ElseCommands to be performed if the logical expression is false. Use DoIf for a logical condition that applies to the entire dataframe and commands that are performed once.
Properties
| Name |
Type |
|
Description |
| Condition |
ExpressionBase |
1..1 |
A logical expression that is evaluated separately for every row in the dataframe. |
| ThenCommands |
CommandBase |
1..n |
Commands to be performed if the condition is true. |
| ElseCommands |
CommandBase |
0..n |
Commands to be performed if the condition is false. |
Properties Inherited from CommandBase
| Name |
Type |
|
Description |
| Command |
string |
1..1 |
The type of command |
| SourceInformation |
SourceInformation |
0..n |
Information about the source of the command. |
| MessageText |
string |
0..n |
Adds a message that can be displayed with the command. |