Skip to main content
ReadingTypeEnum enumeration constants are used to describe the reading type of a text. A text on page can be written in horizontal lines, or vertical lines.
typedef enum {
 TRT_Unknown,
 TRT_LinesBased,
 TRT_ColumnsBased
} ReadingTypeEnum;

Elements

NameDescription
TRT\_ColumnsBasedThe text is written in vertical lines.
TRT\_LinesBasedThe text is written in horizontal lines.
TRT\_UnknownThe reading type is undefined. For a newly created text block, this constant means that text direction should be detected automatically.

Used in

ITextOrientation::ReadingType