Kerning 属性

       

返回或设置 Microsoft Word 根据字号自动调整字距时的最小字号。Single 类型,可读写。

expression.Kerning

expression   必需。该表达式返回一个 Font 对象。

示例

本示例将活动文档进行自动字距调整的最小字号设为 12 磅或更大。

ActiveDocument.Content.Font.Kerning = 12

本示例显示 Word 根据字号自动调整选定文本的字距时的最小字号。

If Selection.Type = wdSelectionNormal Then
    MsgBox Selection.Font.Kerning
Else
    MsgBox "You need to select some text."
End If