This documentation is archived and is not being maintained.
CombineMode Enumeration
.NET Framework 1.1
Specifies how different clipping regions can be combined.
[Visual Basic] <Serializable> Public Enum CombineMode [C#] [Serializable] public enum CombineMode [C++] [Serializable] __value public enum CombineMode [JScript] public Serializable enum CombineMode
Members
| Member name | Description |
|---|---|
| Complement Supported by the .NET Compact Framework. | Specifies that the existing region is replaced by the result of the existing region being removed from the new region. Said differently, the existing region is excluded from the new region. |
| Exclude Supported by the .NET Compact Framework. | Specifies that the existing region is replaced by the result of the new region being removed from the existing region. Said differently, the new region is excluded from the existing region. |
| Intersect Supported by the .NET Compact Framework. | Two clipping regions are combined by taking their intersection. |
| Replace Supported by the .NET Compact Framework. | One clipping region is replaced by another. |
| Union Supported by the .NET Compact Framework. | Two clipping regions are combined by taking the union of both. |
| Xor Supported by the .NET Compact Framework. | Two clipping regions are combined by taking only the areas enclosed by one or the other region, but not both. |
Requirements
Namespace: System.Drawing.Drawing2D
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
Assembly: System.Drawing (in System.Drawing.dll)
See Also
Show: