UI.Table¶
Name | - | Description | Default | Type |
---|---|---|---|---|
<input> |
The value that will be passed to the Columns and Rows shards of the table. | [Any] |
||
<output> |
The output of this shard will be its input. | [Any] |
||
Builder |
Sequence of shards to build each column, repeated for each row. | [] |
[None Shard [Shard]] |
|
Columns |
Configuration of the columns. | None |
[{Any}] |
|
Striped |
Whether to alternate a subtle background color to every other row. | None |
Bool &Bool |
|
Resizable |
Whether columns can be resized within their specified range. | None |
Bool &Bool |
|
RowIndex |
Variable to hold the row index, to be used within Rows. | ContextVariable: Table.RowIndex |
Int &Int |
Table layout.
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 30 |
|
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 |
|
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 |
|