Created
November 14, 2023 13:32
-
-
Save felipeabajo/0078cc15fc1fd57c4da4d949db1a1412 to your computer and use it in GitHub Desktop.
Snippets for working with typography in C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*FONT CUSTOMIZATION*/ | |
/*Size*/ | |
private Font SetFontSize(int fontSize) | |
{ | |
Font newFont; | |
try | |
{ | |
newFont = new Font(FontFamily.GenericSansSerif, fontSize); | |
} | |
catch (Exception ex) | |
{ | |
newFont = new Font(FontFamily.GenericSansSerif, fontSize); | |
} | |
return newFont; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment