4 references to IsVisible
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
598public bool IsVisible(int x, int y, int width, int height) => IsVisible((float)x, y, width, height); 600public bool IsVisible(Rectangle rect) => IsVisible((float)rect.X, rect.Y, rect.Width, rect.Height); 609public bool IsVisible(RectangleF rect) => IsVisible(rect.X, rect.Y, rect.Width, rect.Height);
System.Drawing.Common.Tests (1)
System\Drawing\GraphicsTests.cs (1)
2852bool result7 = graphics.IsVisible(fx, fy, fwidth, fheight);