Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Word Wrap of Text in QLabel: Difference between revisions
Jump to navigation
Jump to search
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
(clean-up) |
||
Line 1: | Line 1: | ||
[[Category:snippets]] | [[Category:snippets]] | ||
Text content in [http://doc.qt.io/qt-5/qlabel.html QLabel] can wrap lines along word boundaries with the [http://doc.qt.io/qt-5/qlabel.html#wordWrap-prop wordWrap property]. By default, word wrap is disabled. To enable it use setWordWrap(): | |||
Text content in [http://doc.qt. | |||
<code> | <code> | ||
Line 13: | Line 6: | ||
pLabel->setText("first line\nsecond line\nthird line\n"); | pLabel->setText("first line\nsecond line\nthird line\n"); | ||
pLabel->setWordWrap(true); | pLabel->setWordWrap(true); | ||
</code> |
Latest revision as of 16:14, 24 March 2016
Text content in QLabel can wrap lines along word boundaries with the wordWrap property. 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);