Paragraph.WordWrap Property

Word Developer Reference

True if Microsoft Word wraps Latin text in the middle of a word in the specified paragraphs or text frames. Read/write Long.

Syntax

expression.WordWrap

expression   Required. A variable that represents a Paragraph object.

Remarks

This property returns wdUndefined if it’s set to True for only some of the specified paragraphs or text frames. This usage may not be available to you, depending on the language support (U.S. English, for example) that you have selected or installed.

Example

This example sets Microsoft Word to wrap Latin text in the middle of a word in the first paragraph of the active document.

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

See Also