Navigation
API > API/Runtime > API/Runtime/Slate
| |
|
| Name |
ETextJustify::Type |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Slate/Public/Framework/Text/TextLayout.h |
| Include Path |
#include "Framework/Text/TextLayout.h" |
Syntax
namespace ETextJustify
{
enum Type
{
Left,
Center,
Right,
InvariantLeft,
InvariantRight,
}
}
Values
| Name |
Remarks |
| Left |
Justify the text logically to the left. |
| Center |
Justify the text in the center. Text flow direction has no impact on this justification mode. |
| Right |
Justify the text logically to the right. |
| InvariantLeft |
Always justify the text to the left, regardless of the flow direction of the current culture. |
| InvariantRight |
Always justify the text to the right, regardless of the flow direction of the current culture. |