CompositingMode
Namespace: System.Drawing.Drawing2D
Assembly: System.Drawing.Managed (4.0.0.0)
Specifies how the source colors are combined with the background colors.
- C#
- VB.NET
public enum CompositingMode : Enum
Public Enum CompositingMode As [Enum]
Fields
| Name | Description |
|---|---|
| SourceCopy | Specifies that when a color is rendered, it overwrites the background color. |
| SourceOver | Specifies that when a color is rendered, it is blended with the background color. The blend is determined by the alpha component of the color being rendered. |
Used By
| Name | Description |
|---|---|
| Graphics.CompositingMode | Gets or sets a value that specifies how composited images are drawn to this Graphics. |