HslColor Constructors

Definition

Overloads

HslColor()

Default constructor creates an empty instance of the class.

HslColor(Int32, Int32, Int32)

Creates instance of the class with the specified hue, saturation, and luminosity.

HslColor()

Default constructor creates an empty instance of the class.

public:
 HslColor();
public HslColor ();
Public Sub New ()

Applies to

HslColor(Int32, Int32, Int32)

Creates instance of the class with the specified hue, saturation, and luminosity.

public:
 HslColor(int hue, int saturation, int luminosity);
public HslColor (int hue, int saturation, int luminosity);
new Microsoft.VisualStudio.Modeling.Diagrams.HslColor : int * int * int -> Microsoft.VisualStudio.Modeling.Diagrams.HslColor
Public Sub New (hue As Integer, saturation As Integer, luminosity As Integer)

Parameters

hue
Int32

starting hue value.

saturation
Int32

starting saturation value.

luminosity
Int32

starting luminosity value.

Applies to