4 references to IsVisible
System.Drawing.Common (4)
System\Drawing\Region.cs (4)
299public bool IsVisible(float x, float y, float width, float height) => IsVisible(new RectangleF(x, y, width, height), null); 301public bool IsVisible(RectangleF rect) => IsVisible(rect, null); 303public bool IsVisible(float x, float y, float width, float height, Graphics? g) => IsVisible(new RectangleF(x, y, width, height), g); 330public bool IsVisible(Rectangle rect, Graphics? g) => IsVisible((RectangleF)rect, g);