Share via


Paragraph.Hyphenation Property

Word Developer Reference

True if the specified paragraphs are included in automatic hyphenation. False if the specified paragraphs are to be excluded from automatic hyphenation. Read/write Long.

Syntax

expression.Hyphenation

expression   A variable that represents a Paragraph object.

Remarks

This property can be True, False or wdUndefined.

Example

This example turns off automatic hyphenation for the first paragraph in the active document.

Visual Basic for Applications
  ActiveDocument.Paragraphs(1).Hyphenation = False

See Also