HslColor Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.