Xceed Toolkit Plus for WPF v4.6 Documentation
HSVtoRGB Method


Xceed.Wpf.Toolkit Assembly > Xceed.Wpf.Toolkit.Chart Namespace > ColorConverter Class : HSVtoRGB Method
A double representing the color's hue.
A double representing the color's saturation.
A double representing the color's value.
A double representing the red channel.
A double representing the green channel.
A double representing the blue channel.
Converts an HSV representation of a color to an RGB representation.
Syntax
'Declaration
 
Public Shared Sub HSVtoRGB( _
   ByVal h As Double, _
   ByVal s As Double, _
   ByVal v As Double, _
   ByRef r As Double, _
   ByRef g As Double, _
   ByRef b As Double _
) 
'Usage
 
Dim h As Double
Dim s As Double
Dim v As Double
Dim r As Double
Dim g As Double
Dim b As Double
 
ColorConverter.HSVtoRGB(h, s, v, r, g, b)
public static void HSVtoRGB( 
   double h,
   double s,
   double v,
   out double r,
   out double g,
   out double b
)

Parameters

h
A double representing the color's hue.
s
A double representing the color's saturation.
v
A double representing the color's value.
r
A double representing the red channel.
g
A double representing the green channel.
b
A double representing the blue channel.
Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ColorConverter Class
ColorConverter Members