Returns or sets the reading order for the specified range. Read/write XlReadingOrder. Default value is xlContext
Syntax
property ReadingOrder: XlReadingOrder;
Description
ReadingOrder can be one of these XlReadingOrder constants
| xlContext |
According to context |
| xlRTL |
Right-to-left |
| xlLTR |
Left-to-right |
Example
This example sets rigth-to-left reading order for the range A1:A5 on sheet one
Workbook.Sheets[1].Range['A1','A5'].ReadingOrder := xlRTL;