Excel) (Range.Font 属性
返回一个 Font 对象,该对象代表指定对象的字体。
语法
表达式。字体
expression 一个表示 Range 对象的变量。
示例
此示例确定单元格 A1 的字体名称是否为 Arial 并通知用户。
Sub CheckFont()
Range("A1").Select
' Determine if the font name for selected cell is Arial.
If Range("A1").Font.Name = "Arial" Then
MsgBox "The font name for this cell is 'Arial'"
Else
MsgBox "The font name for this cell is not 'Arial'"
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。