Enum TextServer.LineBreakFlag
- Namespace
- Godot
- Assembly
- GodotSharp.dll
[Flags]
public enum TextServer.LineBreakFlag : long
Fields
Adaptive = 8Should be used only in conjunction with WordBound, break the line between any unconnected graphemes, if it's impossible to break it between the words.
GraphemeBound = 4Break the line between any unconnected graphemes.
Mandatory = 1Break the line at the line mandatory break characters (e.g.
"\n").None = 0Do not break the line.
TrimEdgeSpaces = 16Remove edge spaces from the broken line segments.
WordBound = 2Break the line between the words.