Color.Multiply(Color, Single) Operator

Definition

Multiplies the alpha, red, blue, and green channels of the specified Color structure by the specified value.

C#
public static System.Windows.Media.Color operator *(System.Windows.Media.Color color, float coefficient);

Parameters

color
Color

The Color to be multiplied.

coefficient
Single

The value to multiply by.

Returns

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

Remarks

The equivalent method for this operator is Color.Multiply(Color, Single)

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also