Font.FontName Property
Gets a string that specifies the font parameters.
Syntax
public System.String FontName { get; }
Property Value
Default: "Arial-14-normal-normal"
A string that specifies the name, size, weight and style of the font.
Remarks
This property specifies the system font that a Font instance represents as well as its size, weight and style. It is formatted like this:
fontFace-size-weight-style
Where element has the following meaning:
Element | Meaning |
---|---|
fontFace | The name of the font, for example: Arial. |
size | The size of the font. The unit of the value is decided by the length unit of the TextVisualizer that uses the font. |
weight | normal or bold |
style | normal or italic |
For example: Arial-16-bold-normal
Platforms
Windows, Linux, Android