Table of Contents

Enum TextServer.AutowrapMode

Namespace
Godot
Assembly
GodotSharp.dll
public enum TextServer.AutowrapMode : long

Fields

Arbitrary = 1

Wraps the text inside the node's bounding rectangle by allowing to break lines at arbitrary positions, which is useful when very limited space is available.

Off = 0

Autowrap is disabled.

Word = 2

Wraps the text inside the node's bounding rectangle by soft-breaking between words.

WordSmart = 3

Behaves similarly to Word, but force-breaks a word if that single word does not fit in one line.