System.Drawing.Graphics.IntersectClip(System.Drawing.Region)

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

1 Example 7

1. Example

Project: SvgNet
Source File: GDIGraphics.cs
public void IntersectClip(Region region)
        {
            _g.IntersectClip(region);
        }