System.UITypes.TAlphaColorRec
Delphi
TAlphaColorRec = record const Alpha = TAlphaColor($FF000000); Aliceblue = Alpha or TAlphaColor($F0F8FF); Antiquewhite = Alpha or TAlphaColor($FAEBD7); Aqua = Alpha or TAlphaColor($00FFFF); Aquamarine = Alpha or TAlphaColor($7FFFD4); Azure = Alpha or TAlphaColor($F0FFFF); Beige = Alpha or TAlphaColor($F5F5DC); Bisque = Alpha or TAlphaColor($FFE4C4); Black = Alpha or TAlphaColor($000000); Blanchedalmond = Alpha or TAlphaColor($FFEBCD); Blue = Alpha or TAlphaColor($0000FF); Blueviolet = Alpha or TAlphaColor($8A2BE2); Brown = Alpha or TAlphaColor($A52A2A); Burlywood = Alpha or TAlphaColor($DEB887); Cadetblue = Alpha or TAlphaColor($5F9EA0); Chartreuse = Alpha or TAlphaColor($7FFF00); Chocolate = Alpha or TAlphaColor($D2691E); Coral = Alpha or TAlphaColor($FF7F50); Cornflowerblue = Alpha or TAlphaColor($6495ED); Cornsilk = Alpha or TAlphaColor($FFF8DC); Crimson = Alpha or TAlphaColor($DC143C); Cyan = Alpha or TAlphaColor($00FFFF); Darkblue = Alpha or TAlphaColor($00008B); Darkcyan = Alpha or TAlphaColor($008B8B); Darkgoldenrod = Alpha or TAlphaColor($B8860B); Darkgray = Alpha or TAlphaColor($A9A9A9); Darkgreen = Alpha or TAlphaColor($006400); Darkgrey = Alpha or TAlphaColor($A9A9A9); Darkkhaki = Alpha or TAlphaColor($BDB76B); Darkmagenta = Alpha or TAlphaColor($8B008B); Darkolivegreen = Alpha or TAlphaColor($556B2F); Darkorange = Alpha or TAlphaColor($FF8C00); Darkorchid = Alpha or TAlphaColor($9932CC); Darkred = Alpha or TAlphaColor($8B0000); Darksalmon = Alpha or TAlphaColor($E9967A); Darkseagreen = Alpha or TAlphaColor($8FBC8F); Darkslateblue = Alpha or TAlphaColor($483D8B); Darkslategray = Alpha or TAlphaColor($2F4F4F); Darkslategrey = Alpha or TAlphaColor($2F4F4F); Darkturquoise = Alpha or TAlphaColor($00CED1); Darkviolet = Alpha or TAlphaColor($9400D3); Deeppink = Alpha or TAlphaColor($FF1493); Deepskyblue = Alpha or TAlphaColor($00BFFF); Dimgray = Alpha or TAlphaColor($696969); Dimgrey = Alpha or TAlphaColor($696969); Dodgerblue = Alpha or TAlphaColor($1E90FF); Firebrick = Alpha or TAlphaColor($B22222); Floralwhite = Alpha or TAlphaColor($FFFAF0); Forestgreen = Alpha or TAlphaColor($228B22); Fuchsia = Alpha or TAlphaColor($FF00FF); Gainsboro = Alpha or TAlphaColor($DCDCDC); Ghostwhite = Alpha or TAlphaColor($F8F8FF); Gold = Alpha or TAlphaColor($FFD700); Goldenrod = Alpha or TAlphaColor($DAA520); Gray = Alpha or TAlphaColor($808080); Green = Alpha or TAlphaColor($008000); Greenyellow = Alpha or TAlphaColor($ADFF2F); Grey = Alpha or TAlphaColor($808080); Honeydew = Alpha or TAlphaColor($F0FFF0); Hotpink = Alpha or TAlphaColor($FF69B4); Indianred = Alpha or TAlphaColor($CD5C5C); Indigo = Alpha or TAlphaColor($4B0082); Ivory = Alpha or TAlphaColor($FFFFF0); Khaki = Alpha or TAlphaColor($F0E68C); Lavender = Alpha or TAlphaColor($E6E6FA); Lavenderblush = Alpha or TAlphaColor($FFF0F5); Lawngreen = Alpha or TAlphaColor($7CFC00); Lemonchiffon = Alpha or TAlphaColor($FFFACD); Lightblue = Alpha or TAlphaColor($ADD8E6); Lightcoral = Alpha or TAlphaColor($F08080); Lightcyan = Alpha or TAlphaColor($E0FFFF); Lightgoldenrodyellow = Alpha or TAlphaColor($FAFAD2); Lightgray = Alpha or TAlphaColor($D3D3D3); Lightgreen = Alpha or TAlphaColor($90EE90); Lightgrey = Alpha or TAlphaColor($D3D3D3); Lightpink = Alpha or TAlphaColor($FFB6C1); Lightsalmon = Alpha or TAlphaColor($FFA07A); Lightseagreen = Alpha or TAlphaColor($20B2AA); Lightskyblue = Alpha or TAlphaColor($87CEFA); Lightslategray = Alpha or TAlphaColor($778899); Lightslategrey = Alpha or TAlphaColor($778899); Lightsteelblue = Alpha or TAlphaColor($B0C4DE); Lightyellow = Alpha or TAlphaColor($FFFFE0); LtGray = Alpha or TAlphaColor($C0C0C0); MedGray = Alpha or TAlphaColor($A0A0A0); DkGray = Alpha or TAlphaColor($808080); MoneyGreen = Alpha or TAlphaColor($C0DCC0); LegacySkyBlue = Alpha or TAlphaColor($F0CAA6); Cream = Alpha or TAlphaColor($F0FBFF); Lime = Alpha or TAlphaColor($00FF00);
C++
struct DECLSPEC_DRECORD TAlphaColorRec{ public: static const TAlphaColor Alpha = TAlphaColor(0xff000000); static const unsigned Aliceblue = unsigned(0xfff0f8ff); static const unsigned Antiquewhite = unsigned(0xfffaebd7); static const unsigned Aqua = unsigned(0xff00ffff); static const unsigned Aquamarine = unsigned(0xff7fffd4); static const unsigned Azure = unsigned(0xfff0ffff); static const unsigned Beige = unsigned(0xfff5f5dc); static const unsigned Bisque = unsigned(0xffffe4c4); static const unsigned Black = unsigned(0xff000000); static const unsigned Blanchedalmond = unsigned(0xffffebcd); static const unsigned Blue = unsigned(0xff0000ff); static const unsigned Blueviolet = unsigned(0xff8a2be2); static const unsigned Brown = unsigned(0xffa52a2a); static const unsigned Burlywood = unsigned(0xffdeb887); static const unsigned Cadetblue = unsigned(0xff5f9ea0); static const unsigned Chartreuse = unsigned(0xff7fff00); static const unsigned Chocolate = unsigned(0xffd2691e); static const unsigned Coral = unsigned(0xffff7f50); static const unsigned Cornflowerblue = unsigned(0xff6495ed); static const unsigned Cornsilk = unsigned(0xfffff8dc); static const unsigned Crimson = unsigned(0xffdc143c); static const unsigned Cyan = unsigned(0xff00ffff); static const unsigned Darkblue = unsigned(0xff00008b); static const unsigned Darkcyan = unsigned(0xff008b8b); static const unsigned Darkgoldenrod = unsigned(0xffb8860b); static const unsigned Darkgray = unsigned(0xffa9a9a9); static const unsigned Darkgreen = unsigned(0xff006400); static const unsigned Darkgrey = unsigned(0xffa9a9a9); static const unsigned Darkkhaki = unsigned(0xffbdb76b); static const unsigned Darkmagenta = unsigned(0xff8b008b); static const unsigned Darkolivegreen = unsigned(0xff556b2f); static const unsigned Darkorange = unsigned(0xffff8c00); static const unsigned Darkorchid = unsigned(0xff9932cc); static const unsigned Darkred = unsigned(0xff8b0000); static const unsigned Darksalmon = unsigned(0xffe9967a); static const unsigned Darkseagreen = unsigned(0xff8fbc8f); static const unsigned Darkslateblue = unsigned(0xff483d8b); static const unsigned Darkslategray = unsigned(0xff2f4f4f); static const unsigned Darkslategrey = unsigned(0xff2f4f4f); static const unsigned Darkturquoise = unsigned(0xff00ced1); static const unsigned Darkviolet = unsigned(0xff9400d3); static const unsigned Deeppink = unsigned(0xffff1493); static const unsigned Deepskyblue = unsigned(0xff00bfff); static const unsigned Dimgray = unsigned(0xff696969); static const unsigned Dimgrey = unsigned(0xff696969); static const unsigned Dodgerblue = unsigned(0xff1e90ff); static const unsigned Firebrick = unsigned(0xffb22222); static const unsigned Floralwhite = unsigned(0xfffffaf0); static const unsigned Forestgreen = unsigned(0xff228b22); static const unsigned Fuchsia = unsigned(0xffff00ff); static const unsigned Gainsboro = unsigned(0xffdcdcdc); static const unsigned Ghostwhite = unsigned(0xfff8f8ff); static const unsigned Gold = unsigned(0xffffd700); static const unsigned Goldenrod = unsigned(0xffdaa520); static const unsigned Gray = unsigned(0xff808080); static const unsigned Green = unsigned(0xff008000); static const unsigned Greenyellow = unsigned(0xffadff2f); static const unsigned Grey = unsigned(0xff808080); static const unsigned Honeydew = unsigned(0xfff0fff0); static const unsigned Hotpink = unsigned(0xffff69b4); static const unsigned Indianred = unsigned(0xffcd5c5c); static const unsigned Indigo = unsigned(0xff4b0082); static const unsigned Ivory = unsigned(0xfffffff0); static const unsigned Khaki = unsigned(0xfff0e68c); static const unsigned Lavender = unsigned(0xffe6e6fa); static const unsigned Lavenderblush = unsigned(0xfffff0f5); static const unsigned Lawngreen = unsigned(0xff7cfc00); static const unsigned Lemonchiffon = unsigned(0xfffffacd); static const unsigned Lightblue = unsigned(0xffadd8e6); static const unsigned Lightcoral = unsigned(0xfff08080); static const unsigned Lightcyan = unsigned(0xffe0ffff); static const unsigned Lightgoldenrodyellow = unsigned(0xfffafad2); static const unsigned Lightgray = unsigned(0xffd3d3d3); static const unsigned Lightgreen = unsigned(0xff90ee90); static const unsigned Lightgrey = unsigned(0xffd3d3d3); static const unsigned Lightpink = unsigned(0xffffb6c1); static const unsigned Lightsalmon = unsigned(0xffffa07a); static const unsigned Lightseagreen = unsigned(0xff20b2aa); static const unsigned Lightskyblue = unsigned(0xff87cefa); static const unsigned Lightslategray = unsigned(0xff778899); static const unsigned Lightslategrey = unsigned(0xff778899); static const unsigned Lightsteelblue = unsigned(0xffb0c4de); static const unsigned Lightyellow = unsigned(0xffffffe0); static const unsigned LtGray = unsigned(0xffc0c0c0); static const unsigned MedGray = unsigned(0xffa0a0a0); static const unsigned DkGray = unsigned(0xff808080); static const unsigned MoneyGreen = unsigned(0xffc0dcc0); static const unsigned LegacySkyBlue = unsigned(0xfff0caa6); static const unsigned Cream = unsigned(0xfff0fbff); static const unsigned Lime = unsigned(0xff00ff00); static const unsigned Limegreen = unsigned(0xff32cd32); static const unsigned Linen = unsigned(0xfffaf0e6); static const unsigned Magenta = unsigned(0xffff00ff); static const unsigned Maroon = unsigned(0xff800000); static const unsigned Mediumaquamarine = unsigned(0xff66cdaa); static const unsigned Mediumblue = unsigned(0xff0000cd); static const unsigned Mediumorchid = unsigned(0xffba55d3); static const unsigned Mediumpurple = unsigned(0xff9370db); static const unsigned Mediumseagreen = unsigned(0xff3cb371); static const unsigned Mediumslateblue = unsigned(0xff7b68ee); static const unsigned Mediumspringgreen = unsigned(0xff00fa9a); static const unsigned Mediumturquoise = unsigned(0xff48d1cc); static const unsigned Mediumvioletred = unsigned(0xffc71585); static const unsigned Midnightblue = unsigned(0xff191970); static const unsigned Mintcream = unsigned(0xfff5fffa); static const unsigned Mistyrose = unsigned(0xffffe4e1); static const unsigned Moccasin = unsigned(0xffffe4b5); static const unsigned Navajowhite = unsigned(0xffffdead); static const unsigned Navy = unsigned(0xff000080); static const unsigned Oldlace = unsigned(0xfffdf5e6); static const unsigned Olive = unsigned(0xff808000); static const unsigned Olivedrab = unsigned(0xff6b8e23); static const unsigned Orange = unsigned(0xffffa500); static const unsigned Orangered = unsigned(0xffff4500); static const unsigned Orchid = unsigned(0xffda70d6); static const unsigned Palegoldenrod = unsigned(0xffeee8aa); static const unsigned Palegreen = unsigned(0xff98fb98); static const unsigned Paleturquoise = unsigned(0xffafeeee); static const unsigned Palevioletred = unsigned(0xffdb7093); static const unsigned Papayawhip = unsigned(0xffffefd5); static const unsigned Peachpuff = unsigned(0xffffdab9); static const unsigned Peru = unsigned(0xffcd853f); static const unsigned Pink = unsigned(0xffffc0cb); static const unsigned Plum = unsigned(0xffdda0dd); static const unsigned Powderblue = unsigned(0xffb0e0e6); static const unsigned Purple = unsigned(0xff800080); static const unsigned Red = unsigned(0xffff0000); static const unsigned Rosybrown = unsigned(0xffbc8f8f); static const unsigned Royalblue = unsigned(0xff4169e1); static const unsigned Saddlebrown = unsigned(0xff8b4513); static const unsigned Salmon = unsigned(0xfffa8072); static const unsigned Sandybrown = unsigned(0xfff4a460); static const unsigned Seagreen = unsigned(0xff2e8b57); static const unsigned Seashell = unsigned(0xfffff5ee); static const unsigned Sienna = unsigned(0xffa0522d); static const unsigned Silver = unsigned(0xffc0c0c0); static const unsigned Skyblue = unsigned(0xff87ceeb); static const unsigned Slateblue = unsigned(0xff6a5acd); static const unsigned Slategray = unsigned(0xff708090); static const unsigned Slategrey = unsigned(0xff708090); static const unsigned Snow = unsigned(0xfffffafa); static const unsigned Springgreen = unsigned(0xff00ff7f); static const unsigned Steelblue = unsigned(0xff4682b4); static const unsigned Tan = unsigned(0xffd2b48c); static const unsigned Teal = unsigned(0xff008080); static const unsigned Thistle = unsigned(0xffd8bfd8); static const unsigned Tomato = unsigned(0xffff6347); static const unsigned Turquoise = unsigned(0xff40e0d0); static const unsigned Violet = unsigned(0xffee82ee); static const unsigned Wheat = unsigned(0xfff5deb3); static const unsigned White = unsigned(0xffffffff); static const unsigned Whitesmoke = unsigned(0xfff5f5f5); static const unsigned Yellow = unsigned(0xffffff00); static const unsigned Yellowgreen = unsigned(0xff9acd32); static const TAlphaColor Null = TAlphaColor(0x0); static int __fastcall (*ColorToRGB)(TAlphaColor Color); #pragma pack(push,1) union { struct { System::Byte B; System::Byte G; System::Byte R; System::Byte A; }; struct { System::Word HiWord; System::Word LoWord; }; struct { TAlphaColor Color; }; }; #pragma pack(pop) };
Sommaire |
Propriétés
| Type | Visibilité | Source | Unité | Parent |
|---|---|---|---|---|
struct class |
public | System.UITypes.pas System.UITypes.hpp |
System.UITypes | System.UITypes |
Description
TAlphaColorRec fournit un accès à l'enregistrement des canaux de couleurs.
Utilisez TAlphaColorRec pour obtenir un accès aux canaux de couleurs sous-jacents.
Couleurs alpha
| Constantes FMX.Types | TAlphaColors | A R V B | Constantes FMX.Types | TAlphaColors | A R V B |
|---|---|---|---|---|---|
|
|
Indianred |
FF CD 5C 5C |
|
Lightsteelblue |
FF B0 C4 DE |
|
|
Lightcoral |
FF F0 80 80 |
|
Powderblue |
FF B0 E0 E6 |
|
|
Salmon |
FF FA 80 72 |
|
Lightblue |
FF AD D8 E6 |
|
|
Darksalmon |
FF E9 96 7A |
|
Skyblue |
FF 87 CE EB |
|
|
Lightsalmon |
FF FF A0 7A |
|
Lightskyblue |
FF 87 CE FA |
|
|
Red |
FF FF 00 00 |
|
Deepskyblue |
FF 00 BF FF |
|
|
Crimson |
FF DC 14 3C |
|
Dodgerblue |
FF 1E 90 FF |
|
|
Firebrick |
FF B2 22 22 |
|
Cornflowerblue |
FF 64 95 ED |
|
|
Darkred |
FF 8B 00 00 |
|
Royalblue |
FF 41 69 E1 |
|
|
Maroon |
FF 80 00 00 |
|
Blue |
FF 00 00 FF |
|
|
Brown |
FF A5 2A 2A |
|
Mediumblue |
FF 00 00 CD |
|
|
Sienna |
FF A0 52 2D |
|
Darkblue |
FF 00 00 8B |
|
|
Saddlebrown |
FF 8B 45 13 |
|
Navy |
FF 00 00 80 |
|
|
Chocolate |
FF D2 69 1E |
|
Midnightblue |
FF 19 19 70 |
|
|
Peru |
FF CD 85 3F |
|
Mediumslateblue |
FF 7B 68 EE |
|
|
Darkgoldenrod |
FF B8 86 0B |
|
Slateblue |
FF 6A 5A CD |
|
|
Goldenrod |
FF DA A5 20 |
|
Darkslateblue |
FF 48 3D 8B |
|
|
Sandybrown |
FF F4 A4 60 |
|
Indigo |
FF 4B 00 82 |
|
|
Rosybrown |
FF BC 8F 8F |
|
Purple |
FF 80 00 80 |
|
|
Tan |
FF D2 B4 8C |
|
Darkmagenta |
FF 8B 00 8B |
|
|
Burlywood |
FF DE B8 87 |
|
Darkorchid |
FF 99 32 CC |
|
|
Wheat |
FF F5 DE B3 |
|
Darkviolet |
FF 94 00 D3 |
|
|
Navajowhite |
FF FF DE AD |
|
Blueviolet |
FF 8A 2B E2 |
|
|
Bisque |
FF FF E4 C4 |
|
Mediumpurple |
FF 93 70 DB |
|
|
Blanchedalmond |
FF FF EB CD |
|
Mediumorchid |
FF BA 55 D3 |
|
|
Cornsilk |
FF FF F8 DC |
|
Magenta |
FF FF 00 FF |
|
|
Coral |
FF FF 7F 50 |
|
Fuchsia |
FF FF 00 FF |
|
|
Tomato |
FF FF 63 47 |
|
Orchid |
FF DA 70 D6 |
|
|
Orangered |
FF FF 45 00 |
|
Violet |
FF EE 82 EE |
|
|
Darkorange |
FF FF 8C 00 |
|
Plum |
FF DD A0 DD |
|
|
Orange |
FF FF A5 00 |
|
Thistle |
FF D8 BF D8 |
|
|
Gold |
FF FF D7 00 |
|
Lavender |
FF E6 E6 FA |
|
|
Yellow |
FF FF FF 00 |
|
Pink |
FF FF C0 CB |
|
|
Lightyellow |
FF FF FF E0 |
|
Lightpink |
FF FF B6 C1 |
|
|
Lemonchiffon |
FF FF FA CD |
|
Hotpink |
FF FF 69 B4 |
|
|
Lightgoldenrodyellow |
FF FA FA D2 |
|
Deeppink |
FF FF 14 93 |
|
|
Papayawhip |
FF FF EF D5 |
|
Mediumvioletred |
FF C7 15 85 |
|
|
Moccasin |
FF FF E4 B5 |
|
Palevioletred |
FF DB 70 93 |
|
|
Peachpuff |
FF FF DA B9 |
|
White |
FF FF FF FF |
|
|
Palegoldenrod |
FF EE E8 AA |
|
Snow |
FF FF FA FA |
|
|
Khaki |
FF F0 E6 8C |
|
Honeydew |
FF F0 FF F0 |
|
|
Darkkhaki |
FF BD B7 6B |
|
Mintcream |
FF F5 FF FA |
|
|
Greenyellow |
FF AD FF 2F |
|
Azure |
FF F0 FF FF |
|
|
Chartreuse |
FF 7F FF 00 |
|
Aliceblue |
FF F0 F8 FF |
|
|
Lawngreen |
FF 7C FC 00 |
|
Ghostwhite |
FF F8 F8 FF |
|
|
Lime |
FF 00 FF 00 |
|
Whitesmoke |
FF F5 F5 F5 |
|
|
Limegreen |
FF 32 CD 32 |
|
Seashell |
FF FF F5 EE |
|
|
Palegreen |
FF 98 FB 98 |
|
Beige |
FF F5 F5 DC |
|
|
Lightgreen |
FF 90 EE 90 |
|
Oldlace |
FF FD F5 E6 |
|
|
Mediumspringgreen |
FF 00 FA 9A |
|
Floralwhite |
FF FF FA F0 |
|
|
Springgreen |
FF 00 FF 7F |
|
Ivory |
FF FF FF F0 |
|
|
Mediumseagreen |
FF 3C B3 71 |
|
Antiquewhite |
FF FA EB D7 |
|
|
Seagreen |
FF 2E 8B 57 |
|
Linen |
FF FA F0 E6 |
|
|
Forestgreen |
FF 22 8B 22 |
|
Lavenderblush |
FF FF F0 F5 |
|
|
Green |
FF 00 80 00 |
|
Mistyrose |
FF FF E4 E1 |
|
|
Darkgreen |
FF 00 64 00 |
|
Gainsboro |
FF DC DC DC |
|
|
Yellowgreen |
FF 9A CD 32 |
|
Lightgrey |
FF D3 D3 D3 |
|
|
Olivedrab |
FF 6B 8E 23 |
|
Lightgray |
FF D3 D3 D3 |
|
|
Olive |
FF 80 80 00 |
|
Silver |
FF C0 C0 C0 |
|
|
Darkolivegreen |
FF 55 6B 2F |
|
Darkgray |
FF A9 A9 A9 |
|
|
Mediumaquamarine |
FF 66 CD AA |
|
Darkgrey |
FF A9 A9 A9 |
|
|
Darkseagreen |
FF 8F BC 8F |
|
Gray |
FF 80 80 80 |
|
|
Lightseagreen |
FF 20 B2 AA |
|
Grey |
FF 80 80 80 |
|
|
Darkcyan |
FF 00 8B 8B |
|
Dimgray |
FF 69 69 69 |
|
|
Teal |
FF 00 80 80 |
|
Dimgrey |
FF 69 69 69 |
|
|
Aqua |
FF 00 FF FF |
|
Lightslategray |
FF 77 88 99 |
|
|
Cyan |
FF 00 FF FF |
|
Lightslategrey |
FF 77 88 99 |
|
|
Lightcyan |
FF E0 FF FF |
|
Slategray |
FF 70 80 90 |
|
|
Paleturquoise |
FF AF EE EE |
|
Slategrey |
FF 70 80 90 |
|
|
Aquamarine |
FF 7F FF D4 |
|
Darkslategray |
FF 2F 4F 4F |
|
|
Turquoise |
FF 40 E0 D0 |
|
Darkslategrey |
FF 2F 4F 4F |
|
|
Mediumturquoise |
FF 48 D1 CC |
|
Black |
FF 00 00 00 |
|
|
Darkturquoise |
FF 00 CE D1 |
|
Null |
00 00 00 00 |
|
|
Cadetblue |
FF 5F 9E A0 |
|
Transparent |
FF 00 00 00 |
|
|
Steelblue |
FF 46 82 B4 |