tableProps
概览
tableProps 适用于 table。
相关文档
字段表
Key |
类型 |
默认值 |
Binding |
UI 影响 / 限制 |
|---|---|---|---|---|
|
integer |
|
|
表格行数 |
|
integer |
|
|
表格列数 |
|
|
|
|
单元格文本 |
TableCell 字段表
Key |
类型 |
默认值 |
说明 |
|---|---|---|---|
|
integer |
|
单元格行索引 |
|
integer |
|
单元格列索引 |
|
string |
|
单元格文本 |
示例
"tableProps": {
"rows": 2,
"columns": 2,
"cells": [
{
"row": 0,
"column": 1,
"text": "Value"
}
]
}