public property wordWrap as Boolean = false
Whether text is wrapped to the available label width.
Wrapping preserves explicit line breaks, prefers whitespace boundaries and splits a single oversized token only when required. The property is disabled by default so existing single-line labels retain their current layout.
hint = Label("This explanation wraps when the window becomes narrow.")
hint.wordWrap = true
hint.preferredHeight = 48