B4J Question Label WrapText

Hello,

Starting to work with b4j and I am a bit confused.

I have labels, I define the width, height and wraping but it seems is not working.

My code is the following:

dim product as label

Product.Initialize("product")
Product.Style= "-fx-font:22 arial; "
Product.TextColor = fx.Colors.red
Product.SetSize(200,100)
Product.WrapText=True
Product.Text = "First line, secondline thirdline, fourth line and some more text"

MainForm.RootPane.AddNode(WrapLabel(Product,"BOTTOM_CENTER"),650,250,200,100)


On my screen the label is as large as the lenght of the line. No wraping. Not respecting the label size.

Any help please?

Thanks in advance
 

stevel05

Expert
Licensed User
Longtime User
What does WrapLabel do? Without it it works as you would expect.

B4X:
MainForm.RootPane.AddNode(product,100,250,150,100)
 
Upvote 0
Top