FlowDirection Property

Microsoft Word Visual Basic

WdFlowDirection can be one of these WdFlowDirection constants.
wdFlowLtr Text in columns flows from left to right.
wdFlowRtl Text in columns flows from right to left.

expression.FlowDirection

expression    Required. An expression that returns a TextColumns object.

Remarks

For more information on using Word with right-to-left languages, see Word features for right-to-left languages.

Example

This example sets the flow direction so that text flows through the specified columns from right to left.

ActiveDocument.PageSetup.TextColumns.FlowDirection = _
    wdFlowRtl