Gets the alpha component value of this System.Drawing.Color structure.
The alpha component value of this System.Drawing.Color.
Gets the blue component value of this System.Drawing.Color structure.
The blue component value of this System.Drawing.Color.
Gets the green component value of this System.Drawing.Color structure.
The green component value of this System.Drawing.Color.
Gets the red component value of this System.Drawing.Color structure.
The red component value of this System.Drawing.Color.
Gets the hue-saturation-lightness (HSL) lightness value for this System.Drawing.Color structure.
The lightness of this System.Drawing.Color. The lightness ranges from 0.0 through 1.0, where 0.0 represents black and 1.0 represents white.
Gets the hue-saturation-lightness (HSL) hue value, in degrees, for this System.Drawing.Color structure.
The hue, in degrees, of this System.Drawing.Color. The hue is measured in degrees, ranging from 0.0 through 360.0, in HSL color space.
Gets the hue-saturation-lightness (HSL) saturation value for this System.Drawing.Color structure.
The saturation of this System.Drawing.Color. The saturation ranges from 0.0 through 1.0, where 0.0 is grayscale and 1.0 is the most saturated.
Static
EqualsDetermines whether the specified object instances are considered equal.
The first object to compare.
The second object to compare.
true if the objects are considered equal; otherwise, false. If both objA and objB are null, the method returns true.
Static
FromCreates a System.Drawing.Color structure from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly 255 (fully opaque). Although this method allows a 32-bit value to be passed for each color component, the value of each component is limited to 8 bits.
The red component value for the new System.Drawing.Color. Valid values are 0 through 255.
The green component value for the new System.Drawing.Color. Valid values are 0 through 255.
The blue component value for the new System.Drawing.Color. Valid values are 0 through 255.
The System.Drawing.Color that this method creates.
Creates a System.Drawing.Color structure from the four ARGB component (alpha, red, green, and blue) values. Although this method allows a 32-bit value to be passed for each component, the value of each component is limited to 8 bits.
The System.Drawing.Color that this method creates.
Represents an ARGB (alpha, red, green, blue) color.