AutoHyphenation Property
Applies To
Document object.
Description
True if automatic hyphenation is turned on for the specified document. Read/write Boolean.
See Also
ConsecutiveHyphensLimit property, HyphenateCaps property, Hyphenation property, HyphenationZone property.
Example
This example turns on automatic hyphenation, with a hyphenation zone of 0.25 inch. Words in all capital letters aren't hyphenated.
With ActiveDocument
.HyphenationZone = InchesToPoints(0.25)
.HyphenateCaps = False
.AutoHyphenation = True
End With