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)
666
public void SetClip(System.Drawing.Drawing2D.GraphicsPath path, System.Drawing.Drawing2D.
CombineMode
combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
668
public void SetClip(System.Drawing.Graphics g, System.Drawing.Drawing2D.
CombineMode
combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
670
public void SetClip(System.Drawing.Rectangle rect, System.Drawing.Drawing2D.
CombineMode
combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
672
public void SetClip(System.Drawing.RectangleF rect, System.Drawing.Drawing2D.
CombineMode
combineMode) { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); }
673
public 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)
245
g.SetClip(new Region(new Rectangle(50, 40, 210, 220)),
CombineMode
.Replace);
505
g.SetClip(clone,
CombineMode
.Replace);
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
1611
g.SetClip(oldClip,
CombineMode
.Replace);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3599
toolstripGraphics.SetClip(transparentRegion!,
CombineMode
.Union);