标签: excel cell
通过这个:
xlWorkSheet.Cells[1, 1].Style.Font.Italic = true;
所有字体都变成斜体。对于只有一个特定的细胞是斜体可以做什么?
答案 0 :(得分:2)
尝试更改字体属性而不是单元格样式属性 Range("a1").Font.Italic = True或Cells(1, 2).Font.Italic = True
Range("a1").Font.Italic = True
Cells(1, 2).Font.Italic = True