System.Drawing.Graphics.IsVisible(System.Drawing.RectangleF)

Here are the examples of the csharp api class System.Drawing.Graphics.IsVisible(System.Drawing.RectangleF) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: SvgNet
Source File: GDIGraphics.cs
public bool IsVisible(RectangleF rect) => _g.IsVisible(rect);

2. Example

Project: llilum
Source File: GraphicsContext.cs
public bool IsVisible( RectangleF bounds )
        {
            return this.Gfx.IsVisible( bounds );
        }