Navigation
API > API/Runtime > API/Runtime/Core
Lists the potential reading directions for text
| Name | TextBiDi::ETextDirection |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Internationalization/Text.h |
| Include Path | #include "Internationalization/Text.h" |
Syntax
namespace TextBiDi
{
enum ETextDirection
{
LeftToRight,
RightToLeft,
Mixed,
}
}
Values
| Name | Remarks |
|---|---|
| LeftToRight | Contains only LTR text - requires simple LTR layout |
| RightToLeft | Contains only RTL text - requires simple RTL layout |
| Mixed | Contains both LTR and RTL text - requires more complex layout using multiple runs of text |