Initializes a new instance of the HslColor class.

Namespace:  CoreDevices.DeviceControls.Colors
Assembly:  Micromanager_net (in Micromanager_net.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public HslColor(
	double hue,
	double saturation,
	double light
)
Visual Basic (Declaration)
Public Sub New ( _
	hue As Double, _
	saturation As Double, _
	light As Double _
)
Visual C++
public:
HslColor(
	double hue, 
	double saturation, 
	double light
)

Parameters

hue
Type: System..::.Double
The hue. Values from 0 to 360.
saturation
Type: System..::.Double
The saturation. Values from 0 to 100.
light
Type: System..::.Double
The light. Values from 0 to 100.

See Also