3 references to IsVisible
System.Drawing.Common (3)
System\Drawing\Drawing2D\GraphicsPath.cs (3)
262public bool IsVisible(PointF pt, Graphics? graphics) => IsVisible(pt.X, pt.Y, graphics); 264public bool IsVisible(int x, int y) => IsVisible((float)x, y, null); 268public bool IsVisible(int x, int y, Graphics? graphics) => IsVisible((float)x, y, graphics);