Returns the names of the selected values of a multi-choice parameter. The values are separated by a space or by a separator defined as the optional second argument. The optional third argument is used for defining another property to return instead of Name.
string SelectedMultiChoiceValues(MultiChoiceParameter multiChoiceParameter; [string seperator]; [string propertyName])
multiChoiceParameter |
A multi-choice parameter. |
seperator |
Optional separator, instead of space, to add between each selected multi-choice value. |
propertyName2 |
Optional name of a property to read from the multi-choice values instead of the Name property. |
Example
SelectedMultiChoiceValues(Options; ", "; "Title")
Returns the titles of selected multi-choice values separated by a comma and a space.