1 implementation of Name
Microsoft.Maui.Graphics (1)
Font.cs (1)
43 public string Name { get; private set; }
7 references to Name
Microsoft.Maui.Graphics (2)
Font.cs (2)
51 ((Name is null && other.Name is null) || Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase));
Microsoft.Maui.Graphics.Skia (3)
FontExtensions.cs (3)
12 if (string.IsNullOrEmpty(font?.Name)) 17 return SKTypeface.FromFamilyName(font.Name, font.Weight, (int)SKFontStyleWidth.Normal, 28 return SKTypeface.FromFile(font.Name);
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (2)
src\Graphics\src\Graphics\Platforms\Windows\FontExtensions.cs (1)
29 FontFamily = font?.Name ?? FontFamily.XamlAutoFontFamily.Source,
src\Graphics\src\Graphics\Platforms\Windows\PlatformStringSizeService.cs (1)
29 FontFamily = font.Name,