Color.Multiply(Color, Single) Operator

Definition

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

public:
 static System::Windows::Media::Color operator *(System::Windows::Media::Color color, float coefficient);
public static System.Windows.Media.Color operator * (System.Windows.Media.Color color, float coefficient);
static member ( * ) : System.Windows.Media.Color * single -> System.Windows.Media.Color
Public Shared Operator * (color As Color, coefficient As Single) As Color

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

See also