feat: support for table cell slash #290
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -55,6 +55,7 @@ interface IElement {
|
||||
verticalAlign?: VerticalAlign;
|
||||
backgroundColor?: string;
|
||||
borderType?: TdBorder;
|
||||
slashType?: TdSlash;
|
||||
value: IElement[];
|
||||
}[];
|
||||
}[];
|
||||
|
||||
@@ -429,6 +429,16 @@ instance.command.executeTableBorderType(payload: TableBorder)
|
||||
instance.command.executeTableTdBorderType(payload: TdBorder)
|
||||
```
|
||||
|
||||
## executeTableTdSlashType
|
||||
|
||||
功能:表格单元格内斜线
|
||||
|
||||
用法:
|
||||
|
||||
```javascript
|
||||
instance.command.executeTableTdSlashType(payload: TdSlash)
|
||||
```
|
||||
|
||||
## executeTableTdBackgroundColor
|
||||
|
||||
功能:表格单元格背景色
|
||||
|
||||
@@ -55,6 +55,7 @@ interface IElement {
|
||||
verticalAlign?: VerticalAlign;
|
||||
backgroundColor?: string;
|
||||
borderType?: TdBorder;
|
||||
slashType?: TdSlash;
|
||||
value: IElement[];
|
||||
}[];
|
||||
}[];
|
||||
|
||||
Reference in New Issue
Block a user