UI.ListBox¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
A sequence of values. | Any |
||
Output ➡️ |
The selected value. | Any |
||
Index |
No | The index of the selected item. | none |
Int Var(Int) None |
IsSelected |
No | Predicate that should return selection state of an item, receives the index in the list, should return true/false. | none |
None Shard [Shard] |
Clicked |
No | Action to perform if an element of the list is being clicked. | none |
None Shard [Shard] |
Template |
No | Custom rendering | none |
None Shard [Shard] |
A list selection.
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|