Table of Contents

Class PlatformFontUsage

Namespace
Selenium.WebDriver.BiDi.Cdp.CSS
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

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

FamilyName string

Font's family name reported by platform.

PostScriptName string

Font's PostScript name reported by platform.

IsCustomFont bool

Indicates if the font was downloaded or resolved locally.

GlyphCount double

Amount of glyphs that were rendered with this font.

Properties

FamilyName

Font's family name reported by platform.

public string FamilyName { get; init; }

Property Value

string

GlyphCount

Amount of glyphs that were rendered with this font.

public double GlyphCount { get; init; }

Property Value

double

IsCustomFont

Indicates if the font was downloaded or resolved locally.

public bool IsCustomFont { get; init; }

Property Value

bool

PostScriptName

Font's PostScript name reported by platform.

public string PostScriptName { get; init; }

Property Value

string