Yang1234 发表于 2024-11-19 11:06:27

【17.1.4】怎么设置表序号的字体、大小

图里的这两块区域,怎么设置字体和字号呢

Wilson.Zhang 发表于 2024-11-19 11:06:28

您好!可以通过代码设置,先获取行头或列头的单元格,对单元格通过CellRange:fontSize()设置字号即可。此处字号的单位为px,参考如下代码:
//设置单元格区域的字号
sheet.getRange(0, 0, 5, 1, GC.Spread.Sheets.SheetArea.rowHeader).fontSize('28px');
//设置单个单元格的字号
sheet.getCell(0, 4, GC.Spread.Sheets.SheetArea.colHeader).fontSize('28px');
如下图所示:


设置字体的方式同上,更换调用接口为CellRange:fontFamily(),也可以通过CellRange:font()一次性设置字体和字号。可以参考官网API文档了解详情:
CellRange:font()--https://demo.grapecity.com.cn/sp ... eets.CellRange#font
CellRange:fontFamily()--https://demo.grapecity.com.cn/sp ... ellRange#fontfamily
CellRange:fontSize()--https://demo.grapecity.com.cn/sp ... .CellRange#fontsize
页: [1]
查看完整版本: 【17.1.4】怎么设置表序号的字体、大小