ReadingOrder Property

WdReadingOrder

WdReadingOrder can be one of these WdReadingOrder constants.
wdReadingOrderLtr
wdReadingOrderRtl

expression.ReadingOrder

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

Use the LtrPara , LtrRun , RtlPara , and RtlRun methods to change the paragraph alignment along with the reading order.

Example

This example sets the reading order of the first paragraph to right-to-left.

ActiveDocument.Paragraphs(1).ReadingOrder = _
    wdReadingOrderRtl

Applies to | Paragraph Object | ParagraphFormat Object | Paragraphs Collection Object

See Also | LtrPara Method | LtrRun Method | RtlPara Method | RtlRun Method