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