Difference between revisions of "Word Wrap of Text in QLabel"
From Qt Wiki
AutoSpider (talk | contribs) (Add "cleanup" tag) |
|||
Line 1: | Line 1: | ||
+ | {{Cleanup | reason=Auto-imported from ExpressionEngine.}} | ||
+ | |||
[[Category:snippets]] | [[Category:snippets]] | ||
Revision as of 17:11, 3 March 2015
EnglishБългарски
Word Wrap of Text in QLabel
Text content in "QLabel":http://doc.qt.nokia.com/latest/qlabel.html can wrap lines along word boundaries with the "wordWrap property":http://doc.qt.nokia.com/latest/qlabel.html#wordWrap-prop. By default, word wrap is disabled. To enable it use setWordWrap():
QLabel *pLabel = new QLabel(this);
pLabel->setText("first line\nsecond line\nthird line\n");
pLabel->setWordWrap(true);