Table of Contents

Enum TextServer.LineBreakFlag

Namespace
Godot
Assembly
GodotSharp.dll
[Flags]
public enum TextServer.LineBreakFlag : long

Fields

Adaptive = 8

Should 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 = 4

Break the line between any unconnected graphemes.

Mandatory = 1

Break the line at the line mandatory break characters (e.g. "\n").

None = 0

Do not break the line.

TrimEdgeSpaces = 16

Remove edge spaces from the broken line segments.

WordBound = 2

Break the line between the words.