Skip to content

Instantly share code, notes, and snippets.

@felipeabajo
Created November 14, 2023 13:32
Show Gist options
  • Save felipeabajo/0078cc15fc1fd57c4da4d949db1a1412 to your computer and use it in GitHub Desktop.
Save felipeabajo/0078cc15fc1fd57c4da4d949db1a1412 to your computer and use it in GitHub Desktop.
Snippets for working with typography in C#
/*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