How can I change the font size?

Source: Internet
Author: User
ArticleDirectory
    • Graphics Unit
I wrote how to change the font style, and then I wrote about how to change the font size? When you observe the font category, you will find that the public attributes it provides are read-only. this means to change the font size. You need to create a new object with the same attributes as the previous one except the font size. here is a convenient method: Static   Public Font changefontsize (Font font, Float Fontsize)
{
If (Font ! =   Null )
{
Float Currentsize = Font. size;
If (Currentsize ! = Fontsize)
{
Font= NewFont (font. Name, fontsize,
Font. style, Font. Unit,
Font. gdicharset, Font. gdiverticalfont );
}
}
Return Font;
}

For example, to enlarge the font of a tag by two times: Label. Font=Changefontsize (Label. Font, label. Font. Size* 2);Graphics Unit

Note that the above methods use the same graphic unit (points, pixels, millimeters, and so on). For a font, you may want"Heavy Load"This method uses a specific unit:

Static   Public Font changefontsize (Font font, Float Fontsize, graphicsunit Unit)
{
If (Font ! =   Null )
{
Float Currentsize = Font. size;
If (Currentsize ! = Fontsize)
{
Font= NewFont (font. Name, fontsize,
Font. style, unit,
Font. gdicharset, Font. gdiverticalfont );
}
}
Return Font;
}

For example, set the font of a label to 12 pixels: Label. Font=Changefontsize (Label. Font,12.0f, Graphicsunit. pixel );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.