Word Wrap of Text in QLabel: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(clean-up)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[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():
'''English''' [[Word_Wrap_of_Text_in_QLabel_Bulgarian|Български]]
 
= 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>
<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);