docs: table cell background color

This commit is contained in:
Hufe921
2023-05-24 21:46:12 +08:00
parent dbcab3b485
commit 9225bef991
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -352,6 +352,14 @@ instance.command.executeTableTdVerticalAlign(payload: VerticalAlign)
instance.command.executeTableBorderType(payload: TableBorder)
```
## executeTableTdBackgroundColor
功能:表格单元格背景色
用法:
```javascript
instance.command.executeTableTdBackgroundColor(payload: string)
```
## executeImage
功能:插入图片
+1
View File
@@ -51,6 +51,7 @@ interface IElement {
colspan: number;
rowspan: number;
verticalAlign?: VerticalAlign;
backgroundColor?: string;
value: IElement[];
}[];
}[];