使用英语阅读

通过


Word) (Font.Size 属性

返回或设置字体大小,以磅为单位。 读/写 单个

语法

表达式大小

expression 是必需的。 一个代表 Font 对象的变量。

示例

以下示例插入文本并将该文本的第七个单词的字号设置为 20 磅。

Selection.Collapse Direction:=wdCollapseEnd 
With Selection.Range 
 .Font.Reset 
 .InsertBefore "This is a demonstration of font size." 
 .Words(7).Font.Size = 20 
End With

以下示例确定所选文本的字号。

mySel = Selection.Font.Size 
If mySel = wdUndefined Then 
 MsgBox "there is a mix of font sizes in the selection." 
Else 
 MsgBox mySel & " points" 
End If

另请参阅

Font 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。