Rows.WrapAroundText Property

Word Developer Reference

Returns or sets whether text should wrap around the specified rows. Read/write Long.

Syntax

expression.WrapAroundText

expression   An expression that returns a Rows object.

Remarks

Returns wdUndefined if only some of the specified rows have wrapping enabled. Can be set to True or False. Setting the WrapAroundText property to False also sets the AllowOverlap property to False. Setting the AllowOverlap property to True also sets the WrapAroundText property to True.

Example

This example sets Microsoft Word to wrap text around the first table in the document.

Visual Basic for Applications
  ActiveDocument.Tables(1).Rows.WrapAroundText = True

See Also