4 references to FillRectangle
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
1216
public void FillRectangle(Brush brush, RectangleF rect) =>
FillRectangle
(brush, rect.X, rect.Y, rect.Width, rect.Height);
1236
public void FillRectangle(Brush brush, Rectangle rect) =>
FillRectangle
(brush, (float)rect.X, rect.Y, rect.Width, rect.Height);
1241
public void FillRectangle(Brush brush, int x, int y, int width, int height) =>
FillRectangle
(brush, (float)x, y, width, height);
System.Drawing.Common.Tests (1)
mono\System.Drawing\GraphicsTests.cs (1)
873
g.
FillRectangle
(brush, 0.0f, 0.0f, 5.0f, -10.0f);