3 writes to Right
Microsoft.Maui (2)
VisualDiagnostics\AdornerModel.cs (2)
72 rc.Right = rect.Right + Math.Max(0, margin.Right); 83 rc.Right = rect.Right + Math.Max(0, margin.Right);
Microsoft.Maui.Controls (1)
LegacyLayouts\RelativeLayout.cs (1)
227 boundsRectangle.Right = Math.Max(boundsRectangle.Right, bounds.Right);
28 references to Right
Microsoft.Maui (6)
Layouts\FlexLayoutManager.cs (1)
64 measuredWidth = Math.Max(measuredWidth, frame.Right);
VisualDiagnostics\AdornerModel.cs (5)
60 rc.Left = Math.Min(rect.Right, rect.Right + margin.Right); 72 rc.Right = rect.Right + Math.Max(0, margin.Right); 83 rc.Right = rect.Right + Math.Max(0, margin.Right); 135 double right = DpiHelper.RoundToPixel(rect.Right, unitsPerPixel);
Microsoft.Maui.Controls (13)
LegacyLayouts\Layout.cs (3)
225 (parent.Width - region.Right) != region.X) 227 region = new Rect(parent.Width - region.Right, region.Y, region.Width, region.Height); 493 region = new Rect(parent.Width - region.Right, region.Y, region.Width, region.Height);
LegacyLayouts\RelativeLayout.cs (3)
227 boundsRectangle.Right = Math.Max(boundsRectangle.Right, bounds.Right); 238 return new SizeRequest(new Size(boundsRectangle.Right, boundsRectangle.Bottom));
LegacyLayouts\StackLayout.cs (2)
214 xOffset = bounds.Right + spacing; 216 boundsWidth = bounds.Right - x;
Shapes\GeometryHelper.cs (2)
57 segDst.Points.Add(matx.Transform(new Point(rectGeoSrc.Rect.Right, rectGeoSrc.Rect.Top))); 58 segDst.Points.Add(matx.Transform(new Point(rectGeoSrc.Rect.Right, rectGeoSrc.Rect.Bottom)));
Shapes\Matrix.cs (3)
739 Point point0 = matrix.Transform(new Point(rect.Right, rect.Top)); 740 Point point1 = matrix.Transform(new Point(rect.Right, rect.Top)); 741 Point point2 = matrix.Transform(new Point(rect.Right, rect.Bottom));
Microsoft.Maui.Graphics (9)
Rect.cs (9)
82 return X <= rect.X && Right >= rect.Right && Y <= rect.Y && Bottom >= rect.Bottom; 92 return (x >= Left) && (x < Right) && (y >= Top) && (y < Bottom); 97 return !((Left >= r.Right) || (Right <= r.Left) || (Top >= r.Bottom) || (Bottom <= r.Top)); 107 return FromLTRB(Math.Min(r1.Left, r2.Left), Math.Min(r1.Top, r2.Top), Math.Max(r1.Right, r2.Right), Math.Max(r1.Bottom, r2.Bottom)); 119 double width = Math.Min(r1.Right, r2.Right) - x;