Color.FromHsva

Color.FromHsva method

Returns a new Color with the requested hue, saturation, value, alpha.

public static Color FromHsva(float hue, float saturation, float value, float alpha)
ParameterTypeDescription
hueSingleA float that represents the hue component of the color.
saturationSingleA float that represents the saturation component of the color.
valueSingleA float that represents the value component of the color.
alphaSingleA float that represents the alpha component of the color.

Return Value

A new instance of the Color class

See Also