如何更改此单元格引用的字体和字体大小?
With OutMail
.display
strbody = Cells(cell.Row, "A").Value & Cells(cell.Row, "B").Value _
在电子邮件中显示Times New Roman字体大小为12,但我希望将其更改为Arial字体大小为10.
提前谢谢!
答案 0 :(得分:0)
您可以将其添加到您的代码中,并将所需的大小设置为数字和所需的字体样式,如“Calibri”或“Verdana:
With strbody
.Font.Name = "Calibri"
.Font.Size = 10
End With