本帖最后由 Lynn.Dou 于 2023-3-14 15:51 编辑
您好,
您将demo下载下来,添加上相关组件,然后修改自己的代码再运行看看。
如果不使用单元格HTML,可以试下富文本。
在单元格中设置wordWrap为true(自动换行),再设置富文本。
示例如下:
- var sheet = spread.getActiveSheet()
- sheet.getCell(1,1).wordWrap(true)
- sheet.setRowHeight(1,100)
- var richText = {
- "richText": [
- {
- "style": {
- "font": "14.6667px Calibri",
- "foreColor": "rgb(255, 0, 0)",
- "textDecoration": 0
- },
- "text": "第一句"
- },
- {
- "text": "\r\n"
- },
- {
- "style": {
- "font": "14.6667px Calibri",
- "foreColor": "rgb(0, 176, 80)",
- "textDecoration": 0
- },
- "text": "第二句"
- },
- {
- "text": "\r\n"
- },
- {
- "style": {
- "font": "14.6667px Calibri",
- "foreColor": "rgb(0, 0, 0)",
- "textDecoration": 0
- },
- "text": "第三句"
- }
- ],
- "text": "第一句\r\n第二句\r\n第三句"
- }
- sheet.setValue(1,1,richText,GC.Spread.Sheets.SheetArea.viewport, GC.Spread.Sheets.ValueType.richText)
复制代码
学习指南-富文本 相关介绍:
https://demo.grapecity.com.cn/sp ... rich-text#timestamp
|