4 references to FillRectangle
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
1216public void FillRectangle(Brush brush, RectangleF rect) => FillRectangle(brush, rect.X, rect.Y, rect.Width, rect.Height); 1236public void FillRectangle(Brush brush, Rectangle rect) => FillRectangle(brush, (float)rect.X, rect.Y, rect.Width, rect.Height); 1241public 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)
873g.FillRectangle(brush, 0.0f, 0.0f, 5.0f, -10.0f);