ManualHyphenation Method Example
This example starts manual hyphenation of the active document.
ActiveDocument.ManualHyphenation
This example sets hyphenation options and then starts manual hyphenation of MyDoc.doc.
With Documents("MyDoc.doc")
.HyphenationZone = InchesToPoints(0.25)
.HyphenateCaps = False
.ManualHyphenation
End With