Class PlatformFontUsage
Information about amount of glyphs that were rendered with given font.
public sealed record PlatformFontUsage : IEquatable<PlatformFontUsage>
- Inheritance
-
PlatformFontUsage
- Implements
- Inherited Members
Constructors
PlatformFontUsage(string, string, bool, double)
Information about amount of glyphs that were rendered with given font.
public PlatformFontUsage(string FamilyName, string PostScriptName, bool IsCustomFont, double GlyphCount)
Parameters
FamilyNamestringFont's family name reported by platform.
PostScriptNamestringFont's PostScript name reported by platform.
IsCustomFontboolIndicates if the font was downloaded or resolved locally.
GlyphCountdoubleAmount of glyphs that were rendered with this font.
Properties
FamilyName
Font's family name reported by platform.
public string FamilyName { get; init; }
Property Value
GlyphCount
Amount of glyphs that were rendered with this font.
public double GlyphCount { get; init; }
Property Value
IsCustomFont
Indicates if the font was downloaded or resolved locally.
public bool IsCustomFont { get; init; }
Property Value
PostScriptName
Font's PostScript name reported by platform.
public string PostScriptName { get; init; }