Docs HotXLS

ReadingOrder-property

Renvoie or sets the reading order for the specified range. Read/write XlReadingOrder. Default value is xlContext

Syntaxe

property ReadingOrder: XlReadingOrder;

Description

ReadingOrder can be one of these XlReadingOrder constants
xlContext According to context
xlRTL Right-to-left
xlLTR Left-to-right

Exemple

This example sets rigth-to-left reading order for the range A1:A5 on sheet one

Workbook.Sheets[1].Range['A1','A5'].ReadingOrder := xlRTL;