feat: support for table cell slash #290

This commit is contained in:
Hufe921
2023-09-28 18:31:13 +08:00
parent 5ad1414d82
commit 4269628cc4
10 changed files with 86 additions and 5 deletions
+11 -1
View File
@@ -426,7 +426,17 @@ Feature: Table td border type
Usage:
```javascript
instance.command.executeTableTdBorderType(payload: TableBorder)
instance.command.executeTableTdBorderType(payload: TdBorder)
```
## executeTableTdSlashType
Feature: Table td slash type
Usage:
```javascript
instance.command.executeTableTdSlashType(payload: TdSlash)
```
## executeTableTdBackgroundColor
+1
View File
@@ -55,6 +55,7 @@ interface IElement {
verticalAlign?: VerticalAlign;
backgroundColor?: string;
borderType?: TdBorder;
slashType?: TdSlash;
value: IElement[];
}[];
}[];