26 | Array/List literals in LotusScriptThomas Bahn3659 - 03 2007 / (2) In each and every other language the are array literals (ways to write arrays as constants), e. g. in @formula language you can write "a" : "b" : "c". You could use Evaluate(|"a" : "b" : "c"|), but this isn't the best solution for performance and you can't use ... |
17 | Support for unordered lists via Designer GUI controlsPatrick Kwinten21943 - 04 2010 / (0) Unordered lists can currently not be added via Designer GUI controls. You need to add them via the Source view. |
11 | @Random for listsPatrick Kwinten21943 - 21 2007 / (4) if my text list look like:
textList:= "London" : "Stockholm" : "New York" :"Bagdad"
I would then like to be able to use
@Random(textList) |