本帖最后由 AlexZ 于 2020-9-25 14:36 编辑
在 SpreadJS V14 新版本中,用户可以调用 toHtml 接口,将一个区域中的内容直接生成为 HTML 代码,方便将表格中的内容快速进行复制,转移到其他应用中,如邮件正文,具体效果如下:
目前支持的内容有以下:
- cell text
- cell span
- cell style
- backColor
- foreColor
- font
- vAlign
- hAlign
- borderLeft
- borderRight
- borderTop
- borderBottom
- textDecoration
- gridline
- row height / column width
* borderLeft / borderRight / borderTop / borderBottom 四个属性,将按照下表转换
GC.Spread.Sheets.LineStyle
| CSS border-style
| CSS border-width(pt)
| dashDot | dashed | 0.5 | dashDotDot | dashed | 0.5 | dashed | dashed | 0.5 | dotted | dotted | 0.5 | double | double | 1.5 | empty | none | 0 | hair | dotted | 0.5 | medium | solid | 1 | mediumDashDot | dashed | 1 | mediumDashDotDot | dashed | 1 | mediumDashed | dashed | 1 | slantedDashDot | dashed | 1 | thick | solid | 1.5 | thin | solid | 0.5 |
|
|