Table.TableDirection Property 

Returns or sets the direction in which Microsoft Word orders cells in the specified table.

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

Usage

Dim table1 As Table

Dim returnValue As WdTableDirection
returnValue = table1.TableDirection

Dim sampleValue As WdTableDirection
table1.TableDirection = sampleValue

Syntax

Property TableDirection() As WdTableDirection
WdTableDirection TableDirection {get; set;}
property WdTableDirection^ TableDirection{
    WdTableDirection^ get();
    Void set(WdTableDirection^);
}
public WdTableDirection get_TableDirection();
public void set_TableDirection(WdTableDirection);
function get TableDirection() : WdTableDirection;
function set TableDirection(WdTableDirection);

Remarks

WdTableDirection can be one of the following constants:

wdTableDirectionLtr

wdTableDirectionRtl

If the TableDirection property is set to wdTableDirectionLtr, the selected rows are arranged with the first column in the leftmost position. If the TableDirection property is set to wdTableDirectionRtl, the selected rows are arranged with the first column in the rightmost position.

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

Table Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

Table Members