3 implementations of FillRectangle
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
156
public abstract void
FillRectangle
(float x, float y, float width, float height);
PictureCanvas.cs (1)
143
public void
FillRectangle
(float x, float y, float width, float height)
ScalingCanvas.cs (1)
165
public void
FillRectangle
(float x, float y, float width, float height)
5 references to FillRectangle
Microsoft.Maui.Graphics (5)
CanvasExtensions.cs (2)
22
target.
FillRectangle
((float)rect.X, (float)rect.Y, (float)rect.Width, (float)rect.Height);
27
target.
FillRectangle
(rect.X, rect.Y, rect.Width, rect.Height);
PaintPattern.cs (1)
25
canvas.
FillRectangle
(0, 0, Width, Height);
PictureCanvas.cs (1)
145
_commands.Add(canvas => canvas.
FillRectangle
(x, y, width, height));
ScalingCanvas.cs (1)
167
_canvas.
FillRectangle
(x * _scaleX, y * _scaleY, width * _scaleX, height * _scaleY);