3 references to IsVisible
System.Drawing.Common (2)
System\Drawing\Graphics.cs (2)
585public bool IsVisible(int x, int y) => IsVisible((float)x, y); 596public bool IsVisible(PointF point) => IsVisible(point.X, point.Y);
System.Drawing.Common.Tests (1)
System\Drawing\GraphicsTests.cs (1)
2842bool result3 = graphics.IsVisible(fx, fy);