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