SelectionOptions Function
Relevance:
Variable occurrences within this function do not contribute towards the overall relevance of those variables.
Consequently, such variables must occur in at least one other context for them to be considered relevant.
Description:
The prescribed selection options defined for a select variable.
Returns:
Text*
Parameter:
Parameter | Data Type | Description |
|---|---|---|
1 | Any | The name of the select variable. |
Examples:
When using functions inside a field, remember the field brackets:
{SelectionOptions(VariableName)}
Expression | Result |
|---|---|
SelectionOptions(Var ) where the statically defined prescribed selections are "a", "b" and "c" | List("a","b","c") |
SelectionOptions( Var ) where the dynamically defined prescribed selections are List("a","b")+List("c") | List("a","b","c") |