1 write to Slant
Microsoft.Maui (1)
Primitives\Font.cs (1)
35 Slant = slant;
9 references to Slant
Microsoft.Maui (8)
Primitives\Font.cs (8)
18 public bool IsDefault => Family == null && (Size <= 0 || double.IsNaN(Size)) && Slant == FontSlant.Default && Weight == FontWeight.Regular; 49 return new Font(Family, Size, Slant, Weight, enabled); 55 return new Font(Family, size, Slant, Weight, AutoScalingEnabled); 65 return new Font(Family, Size, Slant, weight, AutoScalingEnabled); 93 && Slant == other.Slant 112 public override int GetHashCode() => (Family, Size, Weight, Slant, AutoScalingEnabled).GetHashCode(); 126 => $"Family: {Family}, Size: {Size}, Weight: {Weight}, Slant: {Slant}, AutoScalingEnabled: {AutoScalingEnabled}";
Microsoft.Maui.Controls (1)
FontExtensions.cs (1)
19 if (font.Slant != FontSlant.Default)