根据文档,可以通过以下方式更改特定单元格的字体颜色:
sheet.addRow([
'alex',
{
text: 'image',
hyperlink: 'http://something.com' //trying to change color of this cell
}
])
sheet.getRow(1).getCell(2).font = {color: {argb: "004e47cc"}};
但是,我如何在添加行本身时指定样式。(如下所示)。
sheet.addRow([
'alex',
{
text: 'image',
hyperlink: 'http://something.com',
font: {color: {argb: '004e47cc'}}
}
])
我的最终目标是更改颜色并在工作表中的所有超链接下划线(**超链接在随机单元格中)。有更好的解决方案吗?