Document.ManualHyphenation method (Word)

Initiates manual hyphenation of a document, one line at a time.

Syntax

expression. ManualHyphenation

expression Required. A variable that represents a Document object.

Remarks

When you use the ManualHyphenation method, Word prompts he user to accept or decline suggested hyphenations.

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

See also

Document Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.