3 references to IsVisible
System.Drawing.Common (3)
System\Drawing\Region.cs (3)
324public bool IsVisible(int x, int y, int width, int height) => IsVisible(new Rectangle(x, y, width, height), null); 326public bool IsVisible(Rectangle rect) => IsVisible(rect, null); 328public bool IsVisible(int x, int y, int width, int height, Graphics? g) => IsVisible(new Rectangle(x, y, width, height), g);