STRING_MULTI_LINK
This element connects several strings together. It concatenates the strings in input and set the result to the strings in output. This means than whenever the 'from' strings changes, the 'to' strings takes the concatenated values of the 'from' strings, separated by the provided 'separator'.
Attributes brief detailed show all inherited
Example
A simple demo of STRING_MULTI_LINK.

- <!-- strings -->
- <STRING id="string_a" default="Hello" />
- <STRING id="string_b" default="World!" />
- <STRING id="result" default="" />
- <!-- link -->
- <STRING_MULTI_LINK from="string_a;string_b" to="result" separator=", " />
- <!-- controls -->
- <TEXT_FIELD string_id="string_a" />
- <TEXT_FIELD string_id="string_b" />
- <TEXT_FIELD string_id="result" font_weight="bold" />
See STRING_LINK for more examples.
Comments
Please, authorize to view and post comments.