Document.ConsecutiveHyphensLimit 属性 (Word)
返回或设置能够以连字符结尾的连续行的最大数目。 读/写。 长 。
语法
expression。 ConsecutiveHyphensLimit
表达 一个代表 Document 对象的变量。
备注
ConsecutiveHyphensLimit 属性设置为 0 (零),如果所有的连续行的数目可以以连字符结尾。
示例
本示例为 MyReport.doc 设置自动断字功能并将以连字符结束的连续行的数目限制为 2 个。
With Documents("MyReport.doc")
.AutoHyphenation = True
.ConsecutiveHyphensLimit = 2
End With
本示例不限制以连字符结束的连续行的数目。
ActiveDocument.ConsecutiveHyphensLimit = 0
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。