2 writes to _top
Microsoft.Maui.Graphics (2)
InsetsF.cs (2)
15 _top = top; 28 set => _top = value;
6 references to _top
Microsoft.Maui.Graphics (6)
InsetsF.cs (6)
27 get => _top; 57 public float Vertical => _top + _bottom; 61 return Math.Abs(_top - value) < GeometryUtil.Epsilon && Math.Abs(_left - value) < GeometryUtil.Epsilon && Math.Abs(_right - value) < GeometryUtil.Epsilon && 78 return (int)_top ^ (int)_left + (int)_bottom ^ (int)_right; 83 return _top.ToString(CultureInfo.InvariantCulture) + "," + _left.ToString(CultureInfo.InvariantCulture) + "," + _bottom.ToString(CultureInfo.InvariantCulture) + "," + 89 return $"[Insets: Top={_top}, Left={_left}, Bottom={_bottom}, Right={_right}]";