Text on buttons

Is there a way to get the text on a button to display other than a single line.
I have been making my buttons longer to get all of the text to show up.

Most components, including labels and buttons, support HTML. Try something like this for the text property:

<html>line <font color='blue'>one</font><br>line 2

Notice that it’s pretty lenient. I didn’t need an tag, for example. The text will also respect the font properties on the button.

Does the word wrap not work?

Does what word wrap not work? Word wrap works by using HTML in the buttons, just like nathan proposed.

I got it now. Thanks for the help!