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
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:snippets]] | |||
'''English''' [[Word_Wrap_of_Text_in_QLabel_Bulgarian|Български]] | |||
Text | = 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(): | |||
* | <code><br />QLabel *pLabel = new QLabel(this);<br />pLabel->setText("first line\nsecond line\nthird line\n&quot;);<br />pLabel->setWordWrap(true); |
Revision as of 09:35, 24 February 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);