ManualHyphenation Method
Applies To
Document object.
Description
Initiates manual hyphenation of a document, one line at a time. The user is prompted to accept or decline suggested hyphenations.
Syntax
expression.ManualHyphenation
expression Required. An expression that returns a Document object.
See Also
HyphenateCaps property, HyphenationZone property.
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