Rows.AllowOverlap Property 

Returns or sets a value that specifies whether the specified rows can overlap other 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.AllowOverlap

Dim sampleValue As Integer
rows1.AllowOverlap = sampleValue

Syntax

Property AllowOverlap() As Integer
int AllowOverlap {get; set;}
property Int32 AllowOverlap{
    Int32 get();
    Void set(Int32);
}
public int get_AllowOverlap();
public void set_AllowOverlap(int);
function get AllowOverlap() : int;
function set AllowOverlap(int);

Remarks

This property returns wdUndefined if the specified rows include both overlapping rows and non-overlapping rows.

The value of the property can be set to either True or False.

Setting AllowOverlap to True also sets WrapAroundText to True. Setting WrapAroundText to False also sets AllowOverlap to False.

Because HTML doesn't support overlapping tables or shapes, AllowOverlap is ignored in Web layout view.

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