Document.AutoHyphenation 属性 (Word)

如此 如果为指定的文档打开了自动断字功能。 读/写 Boolean

语法

expressionAutoHyphenation

表达 一个代表 Document 对象的变量。

示例

本示例启动自动断字功能,断字区为 0.25 英寸。 全为大写的单词不断字。

With ActiveDocument 
 .HyphenationZone = InchesToPoints(0.25) 
 .HyphenateCaps = False 
 .AutoHyphenation = True 
End With

另请参阅

Document 对象

支持和反馈

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