Summary
Controls the way the bitmaps are drawn together.
- Namespace
- Avalonia
.Visuals .Media .Imaging - Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph BT
Type-->Base0["Enum"]
Base0-->Base1["ValueType"]
Base1-->Base2["object"]
Type-.->Interface0["IComparable"]
Type-.->Interface1["IFormattable"]
Type-.->Interface2["IConvertible"]
Type["BitmapBlendingMode"]
class Type type-node
Syntax
public enum BitmapBlendingMode
Fields
Name | Constant Value | Summary |
---|---|---|
Destination | 2 |
Only the destination will be present.
static
|
DestinationAtop | 9 |
Destination which overlaps the source replaces the source.
static
|
DestinationIn | 5 |
Destination which overlaps the source, replaces the source.
static
|
DestinationOut | 7 |
Destination is placed, where it falls outside of the source.
static
|
DestinationOver | 3 |
Destination is placed over the source.
static
|
Plus | 11 |
Display the sum of the source image and destination image.
static
|
Source | 1 |
Only the source will be present.
static
|
SourceAtop | 8 |
Source which overlaps the destination, replaces the destination.
static
|
SourceIn | 4 |
The source that overlaps the destination, replaces the destination.
static
|
SourceOut | 6 |
Source is placed, where it falls outside of the destination.
static
|
SourceOver | 0 |
Source is placed over the destination.
static
|
Xor | 10 |
The non-overlapping regions of source and destination are combined.
static
|
Extension Methods
Name | Value | Summary |
---|---|---|
HasAllFlags |
bool |
From EnumExtensions
|
HasAnyFlag |
bool |
From EnumExtensions
|
HasFlagCustom |
bool |
From EnumExtensions
|