Share via


Paragraph.ReadingOrder Property (Word)

Returns or sets the reading order of the specified paragraph without changing the alignment. Read/write WdReadingOrder.

Syntax

expression .ReadingOrder

expression Required. A variable that represents a Paragraph object.

Remarks

Use the LtrPara, LtrRun, RtlPara, and RtlRun methods of the Selection object 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

See Also

Concepts

Paragraph Object Members

Paragraph Object