Rows.WrapAroundText Property 

Determines whether text should wrap around the specified rows.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim rows1 As Rows

Dim returnValue As Integer
returnValue = rows1.WrapAroundText

Dim sampleValue As Integer
rows1.WrapAroundText = sampleValue

Syntax

Property WrapAroundText() As Integer
int WrapAroundText {get; set;}
property Int32 WrapAroundText{
    Int32 get();
    Void set(Int32);
}
public int get_WrapAroundText();
public void set_WrapAroundText(int);
function get WrapAroundText() : int;
function set WrapAroundText(int);

Remarks

Returns wdUndefined if only some of the specified rows have wrapping enabled.

The property 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.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Rows Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

Rows Members