ReadingTypeEnum
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
Name | Description |
---|---|
TRT_ColumnsBased | The text is written in vertical lines. |
TRT_LinesBased | The text is written in horizontal lines. |
TRT_Unknown | The reading type is undefined. For a newly created text block, this constant means that text direction should be detected automatically. |
Used in
03.07.2024 8:50:25