Word Wrap of Text in QLabel: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
= Word Wrap of Text in QLabel =
= 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():
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-&gt;setText(&quot;first line\nsecond line\nthird line\n&amp;quot;);<br />pLabel-&gt;setWordWrap(true);
<code>
QLabel *pLabel = new QLabel(this);
pLabel->setText("first line\nsecond line\nthird line\n");
pLabel->setWordWrap(true);

Revision as of 09:56, 25 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);