[Root] / 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.


In This Topic
    HSVtoRGB Method
    In This Topic
    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.
    Supported Frameworks

    .NET: net5.0, net5.0-windows, net6.0, net6.0-macos, net6.0-windows, net7.0, net7.0-macos, net7.0-windows, net8.0, net8.0-browser, net8.0-macos, net8.0-windows, net9.0, net9.0-browser, net9.0-macos, net9.0-windows, net10.0, net10.0-browser, net10.0-macos, net10.0-windows.

    .NET Framework: net40, net403, net45, net451, net452, net46, net461, net462, net463, net47, net471, net472, net48, net481.

    See Also