11 references to Right
Microsoft.Maui.Graphics (9)
RectF.cs (9)
83 return X <= rect.X && Right >= rect.Right && Y <= rect.Y && Bottom >= rect.Bottom; 93 return (x >= Left) && (x < Right) && (y >= Top) && (y < Bottom); 98 return !((Left >= r.Right) || (Right <= r.Left) || (Top >= r.Bottom) || (Bottom <= r.Top)); 108 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)); 120 float width = Math.Min(r1.Right, r2.Right) - x;
Microsoft.Maui.Graphics.Skia (2)
SKGraphicsExtensions.cs (1)
66 return new SKRect(target.Left, target.Top, target.Right, target.Bottom);
SkiaCanvas.cs (1)
294 radius = GeometryUtil.GetDistance(rectangle.Left, rectangle.Top, rectangle.Right, rectangle.Bottom);