Message


Similar to a Label, except it will wrap the text over multiple lines.

Message

from appJar import gui

app=gui()
app.setFont(12)
app.addMessage("mess", """You can put a lot of text in this widget.
The text will be wrapped over multiple lines.
It's not possible to apply different styles to different words.""")
app.go()

Add Messages

Set Messages