unreal.TextFlowDirection

class unreal.TextFlowDirection

Bases: unreal.EnumBase

The different directions that text can flow within a paragraph of text. note: If you change this enum, make sure and update CVarDefaultTextFlowDirection and GetDefaultTextFlowDirection.

C++ Source:

  • Module: Slate

  • File: TextLayout.h

AUTO

Automatically detect the flow direction for each paragraph from its text

Type

0

LEFT_TO_RIGHT

Force text to be flowed left-to-right

Type

1

RIGHT_TO_LEFT

Force text to be flowed right-to-left

Type

2