Quick tips to adjust font size

From Qt Wiki
Revision as of 07:40, 24 February 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

h1. 4 Quick tips to adjust Font Size.

Use doc:QFont class

==== When you know font size in terms of Integer ,

void QFont::setPointSize ( int pointSize )<code> ====

==== Sometimes , it is required that we need font size other than the prescribed sizes. ====

void QFont::setPointSizeF ( qreal pointSize ) is really useful in that manner.

Stylesheet

Using style sheet must be the simplest way.

<br />void setStyleSheet ( const QString &amp; sheet )<br />label-&gt;setStyleSheet (&quot;Font : 12pt&amp;quot;);<br />

'

We can use HTML tags as well, when applicable.

'

Categories
snippets
HowTo
Learning::Demos_and_Examples