Enum TextServer.JustificationFlag
- Namespace
- Godot
- Assembly
- GodotSharp.dll
[Flags]
public enum TextServer.JustificationFlag : long
Fields
AfterLastTab = 8Only apply justification to the part of the text after the last tab.
ConstrainEllipsis = 16Apply justification to the trimmed line with ellipsis.
DoNotSkipSingleLine = 128Always apply justification to the paragraphs with a single line (SkipLastLine and SkipLastLineWithVisibleChars are ignored).
Kashida = 1Justify text by adding and removing kashidas.
None = 0Do not justify text.
SkipLastLine = 32Do not apply justification to the last line of the paragraph.
SkipLastLineWithVisibleChars = 64Do not apply justification to the last line of the paragraph with visible characters (takes precedence over SkipLastLine).
TrimEdgeSpaces = 4Remove trailing and leading spaces from the justified text.
WordBound = 2Justify text by changing width of the spaces between the words.