Adds value a into the list with name b, even if the value already exists in the list.
The return value of the function is always a.
Parameters
Parameter | Description |
|---|---|
a | Value to be added. |
b | Name of the list (if the list does not exist, it is created). Default: default |
c | (optional) "true", if values with set Empty Flag should not be added to the list. Default: "false". Note: Please note that if the parameter is set to "false", values with a set Empty Flag (hidden values) are added to the list. |
Example
Parameter a | Parameter b | Parameter c | Result | Value added to list |
|---|---|---|---|---|
Hallo (Empty Flag: false) | MyList | Hallo | Yes. | |
Hallo (Empty Flag: false) | MyList | Hallo | Yes. Note: The list MyList now contains the value Hallo twice. | |
Hello (Empty Flag: true) | MyList | false | Hello | Yes. |
Hällo (Empty Flag: true) | MyList | true | Hällo | No. |