Word Wrap of Text in QLabel: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(clean-up)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''English''' [[Word Wrap of Text in QLabel Bulgarian|Български]]
[[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():


=Word Wrap of Text in QLabel=
<code>
 
QLabel *pLabel = new QLabel(this);
Text content in [http://doc.qt.nokia.com/latest/qlabel.html QLabel] ''[doc.qt.nokia.com]'' can wrap lines along word boundaries with the [http://doc.qt.nokia.com/latest/qlabel.html#wordWrap-prop wordWrap property] ''[doc.qt.nokia.com]''. By default, word wrap is disabled. To enable it use setWordWrap():
pLabel->setText("first line\nsecond line\nthird line\n");
 
pLabel->setWordWrap(true);
===Categories:===
</code>
 
* [[:Category:snippets|snippets]]

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