MobileLabel.LineBreakModes
From Xojo Documentation
Enumeration
MobileLabel.LineBreakModes
Specifies how Text contents break or wrap when the text is too long to fit.
Values
Enum | Description |
---|---|
WordWrap | Text breaks by word. |
CharacterWrap | Text breaks on a single character, possibly breaking in the middle of a word. |
Clip | The text is clipped at the end, perhaps in mid-character. |
TruncateStart | When the entire text cannot fit, text at the beginning is truncated and replaced with ellipses. |
TruncateEnd | When the entire text cannot fit, text at the end is truncated and replaced with ellipses. |
TruncateMiddle | When the entire text cannot fit, text in the middle is truncated and replaced with ellipses. |