Word Wrap of Text in QLabel

From Qt Wiki
Revision as of 09:35, 24 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


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);