2 writes to _left
Microsoft.Maui.Graphics (2)
Insets.cs (2)
16 _left = left; 34 set => _left = value;
6 references to _left
Microsoft.Maui.Graphics (6)
Insets.cs (6)
33 get => _left; 52 public double Horizontal => _left + _right; 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}]";