Color.Add(Color, Color) Method

Definition

Adds two Color structures.

public:
 static System::Windows::Media::Color Add(System::Windows::Media::Color color1, System::Windows::Media::Color color2);
public static System.Windows.Media.Color Add (System.Windows.Media.Color color1, System.Windows.Media.Color color2);
static member Add : System.Windows.Media.Color * System.Windows.Media.Color -> System.Windows.Media.Color
Public Shared Function Add (color1 As Color, color2 As Color) As Color

Parameters

color1
Color

The first Color structure to add.

color2
Color

The second Color structure to add.

Returns

A new Color structure whose color values are the results of the addition operation.

Remarks

Color structures are added together by adding the alpha, red, green, and blue channels of the first color to the alpha, red, green, and blue channels of the second color. For example, the alpha channel of color1 and the alpha channel of color2 are added together to produce the alpha channel of the resulting color. The same is done with the red, green, and blue channels to produce the red, green, and blue channels of the new color.

Applies to

See also