File.LoadCustomFont Method

Loads the custom font from file.
public static Font LoadCustomFont( 
string sourceFile
float size = 16, 
FontStyle fontStyle = FontStyle.Regular 
)
This language is not supported or no code example is available.

Parameters

sourceFile
string

The target file.

size
float

The size.

fontStyle
FontStyle

The font style.

Return Value

Font

A Font.

public static Font LoadCustomFont(string sourceFile,
     float size = 16,
     FontStyle fontStyle = FontStyle.Regular)
 {
     PrivateFontCollection pfc = new PrivateFontCollection();
     pfc.AddFontFile(sourceFile);
     return new Font(pfc.Families[0], size, fontStyle);
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition