Skip to main content

Range.ReadingOrder property

Table of contents
  1. Syntax
  2. Examples

Returns or sets the reading order for the specified object. Can be one of the following XlReadingOrder constants: xlRTL (right-to-left), xlLTR (left-to-right), or xlContext. Read/write Long.

Syntax

expression.ReadingOrder

expression A variable that represents a Range object.

Examples

The following code example sets the reading order of cell A1 to xlRTL (right-to-left).

Range("A1").ReadingOrder = xlRTL

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>