Table of Contents

Enum TextServer.TextOverrunFlag

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

Fields

AddEllipsis = 4

Determines whether an ellipsis should be added at the end of the text.

EnforceEllipsis = 8

Determines whether the ellipsis at the end of the text is enforced and may not be hidden.

JustificationAware = 16

Accounts for the text being justified before attempting to trim it (see TextServer.JustificationFlag).

NoTrim = 0

No trimming is performed.

Trim = 1

Trims the text when it exceeds the given width.

TrimWordOnly = 2

Trims the text per word instead of per grapheme.