10 references to CombineMode
System.Drawing (1)
System.Drawing.cs (1)
23[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Drawing2D.CombineMode))]
System.Drawing.Common (5)
Special\NotSupported.cs (5)
666public void SetClip(System.Drawing.Drawing2D.GraphicsPath path, System.Drawing.Drawing2D.CombineMode combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 668public void SetClip(System.Drawing.Graphics g, System.Drawing.Drawing2D.CombineMode combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 670public void SetClip(System.Drawing.Rectangle rect, System.Drawing.Drawing2D.CombineMode combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 672public void SetClip(System.Drawing.RectangleF rect, System.Drawing.Drawing2D.CombineMode combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } 673public void SetClip(System.Drawing.Region region, System.Drawing.Drawing2D.CombineMode combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
System.Drawing.Common.Tests (2)
mono\System.Drawing\GraphicsTests.cs (2)
245g.SetClip(new Region(new Rectangle(50, 40, 210, 220)), CombineMode.Replace); 505g.SetClip(clone, CombineMode.Replace);
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1611g.SetClip(oldClip, CombineMode.Replace);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3599toolstripGraphics.SetClip(transparentRegion!, CombineMode.Union);