Cell.WordWrap Property

Word Developer Reference

True if Microsoft Word wraps text to multiple lines and lengthens the cell so that the cell width remains the same. Read/write Boolean.

Syntax

expression.WordWrap

expression   Required. A variable that represents a Cell object.

Example

This example sets Microsoft Word to wrap text to multiple lines in the third cell of the first table so that the cell's width remains the same.

Visual Basic for Applications
  ActiveDocument.Tables(1).Range.Cells(3).WordWrap = True

See Also