| CanvasBlend Enumeration | 
Namespace: Microsoft.Graphics.Canvas
 Syntax
Syntaxpublic enum CanvasBlend
 Members
Members| Member name | Value | Description | |
|---|---|---|---|
| SourceOver | 0 | The standard source-over-destination blend mode, also known as premultiplied alpha blending. | |
| Copy | 1 | The source is copied to the destination; destination pixels are ignored. | |
| Min | 2 | Use the minimum of the source and destination pixel values. | |
| Add | 3 | Take the sum of the source and destination pixel values. | 
 Remarks
RemarksThis illustration shows the available blend modes with varying opacity and backgrounds.

 See Also
See Also