CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
|
Represents a color. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type. More...
#include <color.h>
Public Member Functions | |
Color () | |
Constructs an "empty" instance of Color class that does not represent any color. More... | |
int | ToArgb () const |
Returns a 32-bit ARGB value of the color represented by the current object. More... | |
bool | get_IsEmpty () const |
Returns a value that indicate if the current object is "empty" i.e. does not represent any color. More... | |
bool | get_IsNamedColor () const |
Returns a value that determines whether the Color structure represents a named color or a member of the KnownColor enumeration. More... | |
int | get_R () const |
Returns the value of the red component of the color represented by the current object. More... | |
int | get_G () const |
Returns the value of the green component of the color represented by the current object. More... | |
int | get_B () const |
Returns the value of the blue component of the color represented by the current object. More... | |
int | get_A () const |
Returns the value of the alpha component of the color represented by the current object. More... | |
String | get_Name () const |
Returns the name of the color represented by the current object. More... | |
float | GetBrightness () |
Returns the brightness component of the color reprsented by the current object. More... | |
float | GetHue () |
Returns the Hue-Saturation-Brightness (HSB) hue value, in degrees, for the color reprsented by the current object. More... | |
float | GetSaturation () |
Returns the Hue-Saturation-Brightness (HSB) saturation for the color reprsented by the current object. More... | |
int | GetHashCode () const |
Returns the hash code of the current object. More... | |
String | ToString () const |
Returns the string representation of the current object. More... | |
bool | IsNull () const |
Always returns false. More... | |
bool | operator== (const std::nullptr_t &r) const |
Always returns false. More... | |
bool | operator!= (const std::nullptr_t &r) const |
Always returns true. More... | |
bool | Equals (const Color &color) const |
Determines if the current and the specified Color objects represent the same color. More... | |
bool | operator== (const Color &r) const |
Determines if the current and the specified Color objects represent the same color. More... | |
bool | operator!= (const Color &r) const |
Determines if the current and the specified Color objects represent distinct colors. More... | |
Static Public Member Functions | |
static Color | FromArgb (int argb) |
Constructs an instance of Color class that reprsents the specfied color. More... | |
static Color | FromArgb (int alpha, int red, int green, int blue) |
Constructs an instance of Color class that reprsents the specfied color. More... | |
static Color | FromArgb (int red, int green, int blue) |
Constructs an instance of Color class that reprsents the specfied color with alpha component set to 0xFF. More... | |
static Color | FromArgb (int alpha, Color base_color) |
Constructs an instance of Color class that reprsents the specfied color. More... | |
static Color | FromName (const String &name) |
Constructs an instance of Color class that represents a color with the specified name. More... | |
static Color | FromKnownColor (KnownColor kc) |
Constructs an instance of Color class that represents the specified known color. More... | |
static Color | get_Transparent () |
Returns a color whose ARGB value in hexadecimal notation is #00FFFFFF. More... | |
static Color | get_AliceBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FFF0F8FF. More... | |
static Color | get_AntiqueWhite () |
Returns a color whose ARGB value in hexadecimal notation is #FFFAEBD7. More... | |
static Color | get_Aqua () |
Returns a color whose ARGB value in hexadecimal notation is #FF00FFFF. More... | |
static Color | get_Aquamarine () |
Returns a color whose ARGB value in hexadecimal notation is #FF7FFFD4. More... | |
static Color | get_Azure () |
Returns a color whose ARGB value in hexadecimal notation is #FFF0FFFF. More... | |
static Color | get_Beige () |
Returns a color whose ARGB value in hexadecimal notation is #FFF5F5DC. More... | |
static Color | get_Bisque () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFE4C4. More... | |
static Color | get_Black () |
Returns a color whose ARGB value in hexadecimal notation is #FF000000. More... | |
static Color | get_BlanchedAlmond () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFEBCD. More... | |
static Color | get_Blue () |
Returns a color whose ARGB value in hexadecimal notation is #FF0000FF. More... | |
static Color | get_BlueViolet () |
Returns a color whose ARGB value in hexadecimal notation is #FF8A2BE2. More... | |
static Color | get_Brown () |
Returns a color whose ARGB value in hexadecimal notation is #FFA52A2A. More... | |
static Color | get_BurlyWood () |
Returns a color whose ARGB value in hexadecimal notation is #FFDEB887. More... | |
static Color | get_CadetBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF5F9EA0. More... | |
static Color | get_Chartreuse () |
Returns a color whose ARGB value in hexadecimal notation is #FF7FFF00. More... | |
static Color | get_Chocolate () |
Returns a color whose ARGB value in hexadecimal notation is #FFD2691E. More... | |
static Color | get_Coral () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF7F50. More... | |
static Color | get_CornflowerBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF6495ED. More... | |
static Color | get_Cornsilk () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFF8DC. More... | |
static Color | get_Crimson () |
Returns a color whose ARGB value in hexadecimal notation is #FFDC143C. More... | |
static Color | get_Cyan () |
Returns a color whose ARGB value in hexadecimal notation is #FF00FFFF. More... | |
static Color | get_DarkBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF00008B. More... | |
static Color | get_DarkCyan () |
Returns a color whose ARGB value in hexadecimal notation is #FF008B8B. More... | |
static Color | get_DarkGoldenrod () |
Returns a color whose ARGB value in hexadecimal notation is #FFB8860B. More... | |
static Color | get_DarkGray () |
Returns a color whose ARGB value in hexadecimal notation is #FFA9A9A9. More... | |
static Color | get_DarkGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF006400. More... | |
static Color | get_DarkKhaki () |
Returns a color whose ARGB value in hexadecimal notation is #FFBDB76B. More... | |
static Color | get_DarkMagenta () |
Returns a color whose ARGB value in hexadecimal notation is #FF8B008B. More... | |
static Color | get_DarkOliveGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF556B2F. More... | |
static Color | get_DarkOrange () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF8C00. More... | |
static Color | get_DarkOrchid () |
Returns a color whose ARGB value in hexadecimal notation is #FF9932CC. More... | |
static Color | get_DarkRed () |
Returns a color whose ARGB value in hexadecimal notation is #FF8B0000. More... | |
static Color | get_DarkSalmon () |
Returns a color whose ARGB value in hexadecimal notation is #FFE9967A. More... | |
static Color | get_DarkSeaGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF8FBC8F. More... | |
static Color | get_DarkSlateBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF483D8B. More... | |
static Color | get_DarkSlateGray () |
Returns a color whose ARGB value in hexadecimal notation is #FF2F4F4F. More... | |
static Color | get_DarkTurquoise () |
Returns a color whose ARGB value in hexadecimal notation is #FF00CED1. More... | |
static Color | get_DarkViolet () |
Returns a color whose ARGB value in hexadecimal notation is #FF9400D3. More... | |
static Color | get_DeepPink () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF1493. More... | |
static Color | get_DeepSkyBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF00BFFF. More... | |
static Color | get_DimGray () |
Returns a color whose ARGB value in hexadecimal notation is #FF696969. More... | |
static Color | get_DodgerBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF1E90FF. More... | |
static Color | get_Firebrick () |
Returns a color whose ARGB value in hexadecimal notation is #FFB22222. More... | |
static Color | get_FloralWhite () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFAF0. More... | |
static Color | get_ForestGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF228B22. More... | |
static Color | get_Fuchsia () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF00FF. More... | |
static Color | get_Gainsboro () |
Returns a color whose ARGB value in hexadecimal notation is #FFDCDCDC. More... | |
static Color | get_GhostWhite () |
Returns a color whose ARGB value in hexadecimal notation is #FFF8F8FF. More... | |
static Color | get_Gold () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFD700. More... | |
static Color | get_Goldenrod () |
Returns a color whose ARGB value in hexadecimal notation is #FFDAA520. More... | |
static Color | get_Gray () |
Returns a color whose ARGB value in hexadecimal notation is #FF808080. More... | |
static Color | get_Green () |
Returns a color whose ARGB value in hexadecimal notation is #FF008000. More... | |
static Color | get_GreenYellow () |
Returns a color whose ARGB value in hexadecimal notation is #FFADFF2F. More... | |
static Color | get_Honeydew () |
Returns a color whose ARGB value in hexadecimal notation is #FFF0FFF0. More... | |
static Color | get_HotPink () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF69B4. More... | |
static Color | get_IndianRed () |
Returns a color whose ARGB value in hexadecimal notation is #FFCD5C5C. More... | |
static Color | get_Indigo () |
Returns a color whose ARGB value in hexadecimal notation is #FF4B0082. More... | |
static Color | get_Ivory () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFFF0. More... | |
static Color | get_Khaki () |
Returns a color whose ARGB value in hexadecimal notation is #FFF0E68C. More... | |
static Color | get_Lavender () |
Returns a color whose ARGB value in hexadecimal notation is #FFE6E6FA. More... | |
static Color | get_LavenderBlush () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFF0F5. More... | |
static Color | get_LawnGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF7CFC00. More... | |
static Color | get_LemonChiffon () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFACD. More... | |
static Color | get_LightBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FFADD8E6. More... | |
static Color | get_LightCoral () |
Returns a color whose ARGB value in hexadecimal notation is #FFF08080. More... | |
static Color | get_LightCyan () |
Returns a color whose ARGB value in hexadecimal notation is #FFE0FFFF. More... | |
static Color | get_LightGoldenrodYellow () |
Returns a color whose ARGB value in hexadecimal notation is #FFFAFAD2. More... | |
static Color | get_LightGray () |
Returns a color whose ARGB value in hexadecimal notation is #FFD3D3D3. More... | |
static Color | get_LightGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF90EE90. More... | |
static Color | get_LightPink () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFB6C1. More... | |
static Color | get_LightSalmon () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFA07A. More... | |
static Color | get_LightSeaGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF20B2AA. More... | |
static Color | get_LightSkyBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF87CEFA. More... | |
static Color | get_LightSlateGray () |
Returns a color whose ARGB value in hexadecimal notation is #FF778899. More... | |
static Color | get_LightSteelBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FFB0C4DE. More... | |
static Color | get_LightYellow () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFFE0. More... | |
static Color | get_Lime () |
Returns a color whose ARGB value in hexadecimal notation is #FF00FF00. More... | |
static Color | get_LimeGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF32CD32. More... | |
static Color | get_Linen () |
Returns a color whose ARGB value in hexadecimal notation is #FFFAF0E6. More... | |
static Color | get_Magenta () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF00FF. More... | |
static Color | get_Maroon () |
Returns a color whose ARGB value in hexadecimal notation is #FF800000. More... | |
static Color | get_MediumAquamarine () |
Returns a color whose ARGB value in hexadecimal notation is #FF66CDAA. More... | |
static Color | get_MediumBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF0000CD. More... | |
static Color | get_MediumOrchid () |
Returns a color whose ARGB value in hexadecimal notation is #FFBA55D3. More... | |
static Color | get_MediumPurple () |
Returns a color whose ARGB value in hexadecimal notation is #FF9370DB. More... | |
static Color | get_MediumSeaGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF3CB371. More... | |
static Color | get_MediumSlateBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF7B68EE. More... | |
static Color | get_MediumSpringGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF00FA9A. More... | |
static Color | get_MediumTurquoise () |
Returns a color whose ARGB value in hexadecimal notation is #FF48D1CC. More... | |
static Color | get_MediumVioletRed () |
Returns a color whose ARGB value in hexadecimal notation is #FFC71585. More... | |
static Color | get_MidnightBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF191970. More... | |
static Color | get_MintCream () |
Returns a color whose ARGB value in hexadecimal notation is #FFF5FFFA. More... | |
static Color | get_MistyRose () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFE4E1. More... | |
static Color | get_Moccasin () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFE4B5. More... | |
static Color | get_NavajoWhite () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFDEAD. More... | |
static Color | get_Navy () |
Returns a color whose ARGB value in hexadecimal notation is #FF000080. More... | |
static Color | get_OldLace () |
Returns a color whose ARGB value in hexadecimal notation is #FFFDF5E6. More... | |
static Color | get_Olive () |
Returns a color whose ARGB value in hexadecimal notation is #FF808000. More... | |
static Color | get_OliveDrab () |
Returns a color whose ARGB value in hexadecimal notation is #FF6B8E23. More... | |
static Color | get_Orange () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFA500. More... | |
static Color | get_OrangeRed () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF4500. More... | |
static Color | get_Orchid () |
Returns a color whose ARGB value in hexadecimal notation is #FFDA70D6. More... | |
static Color | get_PaleGoldenrod () |
Returns a color whose ARGB value in hexadecimal notation is #FFEEE8AA. More... | |
static Color | get_PaleGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF98FB98. More... | |
static Color | get_PaleTurquoise () |
Returns a color whose ARGB value in hexadecimal notation is #FFAFEEEE. More... | |
static Color | get_PaleVioletRed () |
Returns a color whose ARGB value in hexadecimal notation is #FFDB7093. More... | |
static Color | get_PapayaWhip () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFEFD5. More... | |
static Color | get_PeachPuff () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFDAB9. More... | |
static Color | get_Peru () |
Returns a color whose ARGB value in hexadecimal notation is #FFCD853F. More... | |
static Color | get_Pink () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFC0CB. More... | |
static Color | get_Plum () |
Returns a color whose ARGB value in hexadecimal notation is #FFDDA0DD. More... | |
static Color | get_PowderBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FFB0E0E6. More... | |
static Color | get_Purple () |
Returns a color whose ARGB value in hexadecimal notation is #FF800080. More... | |
static Color | get_Red () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF0000. More... | |
static Color | get_RosyBrown () |
Returns a color whose ARGB value in hexadecimal notation is #FFBC8F8F. More... | |
static Color | get_RoyalBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF4169E1. More... | |
static Color | get_SaddleBrown () |
Returns a color whose ARGB value in hexadecimal notation is #FF8B4513. More... | |
static Color | get_Salmon () |
Returns a color whose ARGB value in hexadecimal notation is #FFFA8072. More... | |
static Color | get_SandyBrown () |
Returns a color whose ARGB value in hexadecimal notation is #FFF4A460. More... | |
static Color | get_SeaGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF2E8B57. More... | |
static Color | get_SeaShell () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFF5EE. More... | |
static Color | get_Sienna () |
Returns a color whose ARGB value in hexadecimal notation is #FFA0522D. More... | |
static Color | get_Silver () |
Returns a color whose ARGB value in hexadecimal notation is #FFC0C0C0. More... | |
static Color | get_SkyBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF87CEEB. More... | |
static Color | get_SlateBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF6A5ACD. More... | |
static Color | get_SlateGray () |
Returns a color whose ARGB value in hexadecimal notation is #FF708090. More... | |
static Color | get_Snow () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFAFA. More... | |
static Color | get_SpringGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF00FF7F. More... | |
static Color | get_SteelBlue () |
Returns a color whose ARGB value in hexadecimal notation is #FF4682B4. More... | |
static Color | get_Tan () |
Returns a color whose ARGB value in hexadecimal notation is #FFD2B48C. More... | |
static Color | get_Teal () |
Returns a color whose ARGB value in hexadecimal notation is #FF008080. More... | |
static Color | get_Thistle () |
Returns a color whose ARGB value in hexadecimal notation is #FFD8BFD8. More... | |
static Color | get_Tomato () |
Returns a color whose ARGB value in hexadecimal notation is #FFFF6347. More... | |
static Color | get_Turquoise () |
Returns a color whose ARGB value in hexadecimal notation is #FF40E0D0. More... | |
static Color | get_Violet () |
Returns a color whose ARGB value in hexadecimal notation is #FFEE82EE. More... | |
static Color | get_Wheat () |
Returns a color whose ARGB value in hexadecimal notation is #FFF5DEB3. More... | |
static Color | get_White () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFFFF. More... | |
static Color | get_WhiteSmoke () |
Returns a color whose ARGB value in hexadecimal notation is #FFF5F5F5. More... | |
static Color | get_Yellow () |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFF00. More... | |
static Color | get_YellowGreen () |
Returns a color whose ARGB value in hexadecimal notation is #FF9ACD32. More... | |
Static Public Attributes | |
static const Color | Empty |
An "empty" instance of Color class i.e. an instance that does not represent any color. More... | |
Represents a color. This type should be allocated on stack and passed to functions by value or by reference. Never use System::SmartPtr class to manage objects of this type.
System::Drawing::Color::Color | ( | ) |
Constructs an "empty" instance of Color class that does not represent any color.
bool System::Drawing::Color::Equals | ( | const Color & | color | ) | const |
Constructs an instance of Color class that reprsents the specfied color.
alpha | A value of the alpah component of the color |
base_color | An instance of Color object that represents the red, green and blue components of the color to be represented by the object being created |
|
static |
Constructs an instance of Color class that reprsents the specfied color.
alpha | A value of the alpah component of the color |
red | A value of the red component of the color |
green | A value of the green component of the color |
blue | A value of the blue component of the color |
|
static |
Constructs an instance of Color class that reprsents the specfied color.
argb | A 32-bit ARGB value of the color to be represented by the object being constructed |
|
static |
Constructs an instance of Color class that reprsents the specfied color with alpha component set to 0xFF.
red | A value of the red component of the color |
green | A value of the green component of the color |
blue | A value of the blue component of the color |
|
static |
int System::Drawing::Color::get_A | ( | ) | const |
Returns the value of the alpha component of the color represented by the current object.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF0F8FF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFAEBD7.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00FFFF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF7FFFD4.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF0FFFF.
int System::Drawing::Color::get_B | ( | ) | const |
Returns the value of the blue component of the color represented by the current object.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF5F5DC.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFE4C4.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF000000.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFEBCD.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF0000FF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF8A2BE2.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFA52A2A.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDEB887.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF5F9EA0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF7FFF00.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFD2691E.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF7F50.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF6495ED.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFF8DC.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDC143C.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00FFFF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00008B.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF008B8B.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFB8860B.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFA9A9A9.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF006400.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFBDB76B.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF8B008B.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF556B2F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF8C00.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF9932CC.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF8B0000.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFE9967A.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF8FBC8F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF483D8B.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF2F4F4F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00CED1.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF9400D3.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF1493.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00BFFF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF696969.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF1E90FF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFB22222.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFAF0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF228B22.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF00FF.
int System::Drawing::Color::get_G | ( | ) | const |
Returns the value of the green component of the color represented by the current object.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDCDCDC.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF8F8FF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFD700.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDAA520.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF808080.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF008000.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFADFF2F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF0FFF0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF69B4.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFCD5C5C.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF4B0082.
bool System::Drawing::Color::get_IsEmpty | ( | ) | const |
Returns a value that indicate if the current object is "empty" i.e. does not represent any color.
bool System::Drawing::Color::get_IsNamedColor | ( | ) | const |
Returns a value that determines whether the Color structure represents a named color or a member of the KnownColor enumeration.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFFF0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF0E68C.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFE6E6FA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFF0F5.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF7CFC00.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFACD.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFADD8E6.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF08080.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFE0FFFF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFAFAD2.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFD3D3D3.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF90EE90.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFB6C1.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFA07A.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF20B2AA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF87CEFA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF778899.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFB0C4DE.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFFE0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00FF00.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF32CD32.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFAF0E6.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF00FF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF800000.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF66CDAA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF0000CD.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFBA55D3.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF9370DB.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF3CB371.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF7B68EE.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00FA9A.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF48D1CC.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFC71585.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF191970.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF5FFFA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFE4E1.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFE4B5.
String System::Drawing::Color::get_Name | ( | ) | const |
Returns the name of the color represented by the current object.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFDEAD.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF000080.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFDF5E6.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF808000.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF6B8E23.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFA500.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF4500.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDA70D6.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFEEE8AA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF98FB98.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFAFEEEE.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDB7093.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFEFD5.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFDAB9.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFCD853F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFC0CB.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFDDA0DD.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFB0E0E6.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF800080.
int System::Drawing::Color::get_R | ( | ) | const |
Returns the value of the red component of the color represented by the current object.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF0000.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFBC8F8F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF4169E1.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF8B4513.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFA8072.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF4A460.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF2E8B57.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFF5EE.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFA0522D.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFC0C0C0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF87CEEB.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF6A5ACD.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF708090.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFAFA.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF00FF7F.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF4682B4.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFD2B48C.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF008080.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFD8BFD8.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFF6347.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #00FFFFFF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF40E0D0.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFEE82EE.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF5DEB3.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFFFF.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFF5F5F5.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FFFFFF00.
|
static |
Returns a color whose ARGB value in hexadecimal notation is #FF9ACD32.
float System::Drawing::Color::GetBrightness | ( | ) |
Returns the brightness component of the color reprsented by the current object.
int System::Drawing::Color::GetHashCode | ( | ) | const |
Returns the hash code of the current object.
float System::Drawing::Color::GetHue | ( | ) |
Returns the Hue-Saturation-Brightness (HSB) hue value, in degrees, for the color reprsented by the current object.
float System::Drawing::Color::GetSaturation | ( | ) |
Returns the Hue-Saturation-Brightness (HSB) saturation for the color reprsented by the current object.
|
inline |
Always returns false.
bool System::Drawing::Color::operator!= | ( | const Color & | r | ) | const |
|
inline |
Always returns true.
bool System::Drawing::Color::operator== | ( | const Color & | r | ) | const |
|
inline |
Always returns false.
|
inline |
Returns a 32-bit ARGB value of the color represented by the current object.
String System::Drawing::Color::ToString | ( | ) | const |
Returns the string representation of the current object.