2 writes to Height
Microsoft.Maui.Essentials (2)
Types\DisplayInfo.shared.cs (2)
22 Height = height; 41 Height = height;
9 references to Height
Microsoft.Maui.Controls (1)
DisplayInfoExtensions.cs (1)
15 return new Size(info.Width / info.Density, info.Height / info.Density);
Microsoft.Maui.Essentials (8)
DeviceDisplay\DeviceDisplay.shared.cs (1)
131 metrics.Width, metrics.Height,
Types\DisplayInfo.shared.cs (7)
110 /// <remarks>Equality is established by comparing if <see cref="Height"/>, <see cref="Width"/>, <see cref="Density"/>, <see cref="Orientation"/> and <see cref="Rotation"/> are all equal.</remarks> 113 Height.Equals(other.Height) && 122 /// <remarks>The hash code is computed from <see cref="Height"/>, <see cref="Width"/>, <see cref="Density"/>, <see cref="Orientation"/> and <see cref="Rotation"/>.</remarks> 124 (Height, Width, Density, Orientation, Rotation).GetHashCode(); 131 $"{nameof(Height)}: {Height}, {nameof(Width)}: {Width}, " +