2 instantiations of EmbeddedFont
Microsoft.Maui (2)
Fonts\FontRegistrar.cs (2)
79
var font = new
EmbeddedFont
{ FontName = filename };
91
var font = new
EmbeddedFont
{ FontName = filename, ResourceStream = stream };
6 references to EmbeddedFont
Microsoft.Maui (6)
Fonts\EmbeddedFontLoader.Standard.cs (1)
9
public string? LoadFont(
EmbeddedFont
font) => null;
Fonts\FileSystemEmbeddedFontLoader.cs (1)
53
public string? LoadFont(
EmbeddedFont
font)
Fonts\FontRegistrar.cs (2)
79
var
font = new EmbeddedFont { FontName = filename };
91
var
font = new EmbeddedFont { FontName = filename, ResourceStream = stream };
Fonts\IEmbeddedFontLoader.cs (2)
12
/// <param name="font">A <see cref="
EmbeddedFont
"/> object with the information on the font to load.</param>
15
string? LoadFont(
EmbeddedFont
font);