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(
	int hue,
	int saturation,
	int light
)
Visual Basic (Declaration)
Public Sub New ( _
	hue As Integer, _
	saturation As Integer, _
	light As Integer _
)
Visual C++
public:
HslColor(
	int hue, 
	int saturation, 
	int light
)

Parameters

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

See Also