Font.Font Constructors
Initializes a new instance of the Font class.
Overload List
Name | Description | |
---|---|---|
Public method | Font(System.String fontName) | Initializes a new instance of the Font class with the specified parameters. |
Public method | Font(System.String fontName, System.String path, System.String fileName) | Initializes a new instance of the Font class from the specified font file. |
Font(System.String fontName)
Initializes a new instance of the Font class with the specified parameters.Syntax
public Font (
System.String fontName
)
Parameters
A string that specifies the name, size, weight and style of the font.
Remarks
See FontName for how the fontName parameter is constructed.
Font(System.String fontName, System.String path, System.String fileName)
Initializes a new instance of the Font class from the specified font file.Syntax
public Font (
System.String fontName,
System.String path,
System.String fileName
)
Parameters
A string that specifies the name, size, weight and style of the font. Only the size is actually used, the other parameters are ignored.
Specifies the directory of the font file to load.
Specifies the name of the font file to load.
Remarks
Use this constructor to load a font directly from a TrueType or OpenType font file.
See FontName for how the fontName parameter is constructed. Note though that only the size will be used; the family and the bold and italic flags will be ignored.
Platforms
Windows, Linux, Android