14 references to Left
Microsoft.Maui.Controls (5)
Shapes\Shape.cs (5)
292 bool requireAdjustX = viewBounds.Left > pathBounds.Left; 298 (float)(pathBounds.X + viewBounds.Left - pathBounds.Left), 325 (float)(viewBounds.Left - widthScale * pathBounds.Left), 335 (float)(viewBounds.Left - minScale * pathBounds.Left + 347 (float)(viewBounds.Left - maxScale * pathBounds.Left),
Microsoft.Maui.Graphics (5)
RectF.cs (5)
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));
Microsoft.Maui.Graphics.Skia (3)
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);
SkiaImage.cs (1)
149 canvas.DrawImage(this, dirtyRect.Left, dirtyRect.Top, MathF.Round(dirtyRect.Width), MathF.Round(dirtyRect.Height));
Microsoft.Maui.Graphics.Win2D.WinUI.Desktop (1)
src\Graphics\src\Graphics\Platforms\Windows\PlatformImage.cs (1)
140 canvas.DrawImage(this, dirtyRect.Left, dirtyRect.Top, Math.Abs(dirtyRect.Width), Math.Abs(dirtyRect.Height));