Log in

View Full Version : multi line text boxes


mjabon
07-14-2009, 12:26 PM
Hello. I can't seem to find a multi-line text box in Vizard. We need to be able to accept long inputs (like 3 paragraphs). How can we do this in vizard?

jaylocco
07-15-2009, 09:45 PM
Hi, im not the expert but i wish to share with you this:

try use

text = viz.addTextbox()
text.translate(.5,.5)
text.overflow(viz.OVERFLOW_GROW)


the text box will expand to fit all the text..

hope this would helps...

mjabon
07-16-2009, 11:37 AM
Hi, im not the expert but i wish to share with you this:

try use

text = viz.addTextbox()
text.translate(.5,.5)
text.overflow(viz.OVERFLOW_GROW)


the text box will expand to fit all the text..

hope this would helps...

Thank you, but this is what we do and the text grows off the screen which is unacceptable. Is there not multiple lines?