2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Drawing / System.Drawing / Brushes.cs
blob98a387c6de1948aeac2c01d02fbe7cdc2c0f22d7
1 //
2 // System.Windows.Drawing.Brushes.cs
3 //
4 // Authors:
5 // Dennis Hayes (dennish@Raytek.com)
6 // Suesan Chaney
7 // Peter Bartok (pbartok@novell.com)
8 //
9 // (C) Ximian, Inc., 2002 http://www.ximian.com
10 // (C) Novell, Inc., 2004 http://www.novell.com
14 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
16 // Permission is hereby granted, free of charge, to any person obtaining
17 // a copy of this software and associated documentation files (the
18 // "Software"), to deal in the Software without restriction, including
19 // without limitation the rights to use, copy, modify, merge, publish,
20 // distribute, sublicense, and/or sell copies of the Software, and to
21 // permit persons to whom the Software is furnished to do so, subject to
22 // the following conditions:
23 //
24 // The above copyright notice and this permission notice shall be
25 // included in all copies or substantial portions of the Software.
26 //
27 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
31 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
32 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
33 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 using System;
38 namespace System.Drawing
40 public sealed class Brushes
42 static SolidBrush aliceBlue;
43 static SolidBrush antiqueWhite;
44 static SolidBrush aqua;
45 static SolidBrush aquamarine;
46 static SolidBrush azure;
47 static SolidBrush beige;
48 static SolidBrush bisque;
49 static SolidBrush black;
50 static SolidBrush blanchedAlmond;
51 static SolidBrush blue;
52 static SolidBrush blueViolet;
53 static SolidBrush brown;
54 static SolidBrush burlyWood;
55 static SolidBrush cadetBlue;
56 static SolidBrush chartreuse;
57 static SolidBrush chocolate;
58 static SolidBrush coral;
59 static SolidBrush cornflowerBlue;
60 static SolidBrush cornsilk;
61 static SolidBrush crimson;
62 static SolidBrush cyan;
63 static SolidBrush darkBlue;
64 static SolidBrush darkCyan;
65 static SolidBrush darkGoldenrod;
66 static SolidBrush darkGray;
67 static SolidBrush darkGreen;
68 static SolidBrush darkKhaki;
69 static SolidBrush darkMagenta;
70 static SolidBrush darkOliveGreen;
71 static SolidBrush darkOrange;
72 static SolidBrush darkOrchid;
73 static SolidBrush darkRed;
74 static SolidBrush darkSalmon;
75 static SolidBrush darkSeaGreen;
76 static SolidBrush darkSlateBlue;
77 static SolidBrush darkSlateGray;
78 static SolidBrush darkTurquoise;
79 static SolidBrush darkViolet;
80 static SolidBrush deepPink;
81 static SolidBrush deepSkyBlue;
82 static SolidBrush dimGray;
83 static SolidBrush dodgerBlue;
84 static SolidBrush firebrick;
85 static SolidBrush floralWhite;
86 static SolidBrush forestGreen;
87 static SolidBrush fuchsia;
88 static SolidBrush gainsboro;
89 static SolidBrush ghostWhite;
90 static SolidBrush gold;
91 static SolidBrush goldenrod;
92 static SolidBrush gray;
93 static SolidBrush green;
94 static SolidBrush greenYellow;
95 static SolidBrush honeydew;
96 static SolidBrush hotPink;
97 static SolidBrush indianRed;
98 static SolidBrush indigo;
99 static SolidBrush ivory;
100 static SolidBrush khaki;
101 static SolidBrush lavender;
102 static SolidBrush lavenderBlush;
103 static SolidBrush lawnGreen;
104 static SolidBrush lemonChiffon;
105 static SolidBrush lightBlue;
106 static SolidBrush lightCoral;
107 static SolidBrush lightCyan;
108 static SolidBrush lightGoldenrodYellow;
109 static SolidBrush lightGray;
110 static SolidBrush lightGreen;
111 static SolidBrush lightPink;
112 static SolidBrush lightSalmon;
113 static SolidBrush lightSeaGreen;
114 static SolidBrush lightSkyBlue;
115 static SolidBrush lightSlateGray;
116 static SolidBrush lightSteelBlue;
117 static SolidBrush lightYellow;
118 static SolidBrush lime;
119 static SolidBrush limeGreen;
120 static SolidBrush linen;
121 static SolidBrush magenta;
122 static SolidBrush maroon;
123 static SolidBrush mediumAquamarine;
124 static SolidBrush mediumBlue;
125 static SolidBrush mediumOrchid;
126 static SolidBrush mediumPurple;
127 static SolidBrush mediumSeaGreen;
128 static SolidBrush mediumSlateBlue;
129 static SolidBrush mediumSpringGreen;
130 static SolidBrush mediumTurquoise;
131 static SolidBrush mediumVioletRed;
132 static SolidBrush midnightBlue;
133 static SolidBrush mintCream;
134 static SolidBrush mistyRose;
135 static SolidBrush moccasin;
136 static SolidBrush navajoWhite;
137 static SolidBrush navy;
138 static SolidBrush oldLace;
139 static SolidBrush olive;
140 static SolidBrush oliveDrab;
141 static SolidBrush orange;
142 static SolidBrush orangeRed;
143 static SolidBrush orchid;
144 static SolidBrush paleGoldenrod;
145 static SolidBrush paleGreen;
146 static SolidBrush paleTurquoise;
147 static SolidBrush paleVioletRed;
148 static SolidBrush papayaWhip;
149 static SolidBrush peachPuff;
150 static SolidBrush peru;
151 static SolidBrush pink;
152 static SolidBrush plum;
153 static SolidBrush powderBlue;
154 static SolidBrush purple;
155 static SolidBrush red;
156 static SolidBrush rosyBrown;
157 static SolidBrush royalBlue;
158 static SolidBrush saddleBrown;
159 static SolidBrush salmon;
160 static SolidBrush sandyBrown;
161 static SolidBrush seaGreen;
162 static SolidBrush seaShell;
163 static SolidBrush sienna;
164 static SolidBrush silver;
165 static SolidBrush skyBlue;
166 static SolidBrush slateBlue;
167 static SolidBrush slateGray;
168 static SolidBrush snow;
169 static SolidBrush springGreen;
170 static SolidBrush steelBlue;
171 static SolidBrush tan;
172 static SolidBrush teal;
173 static SolidBrush thistle;
174 static SolidBrush tomato;
175 static SolidBrush transparent;
176 static SolidBrush turquoise;
177 static SolidBrush violet;
178 static SolidBrush wheat;
179 static SolidBrush white;
180 static SolidBrush whiteSmoke;
181 static SolidBrush yellow;
182 static SolidBrush yellowGreen;
184 // We intentionally do not set the is_modifiable=false flag on
185 // the brushes, to stay Microsoft compatible
187 private Brushes () { }
189 public static Brush AliceBlue {
190 get {
191 if (aliceBlue==null) {
192 aliceBlue=new SolidBrush(Color.AliceBlue);
194 return(aliceBlue);
198 public static Brush AntiqueWhite {
199 get {
200 if (antiqueWhite==null) {
201 antiqueWhite=new SolidBrush(Color.AntiqueWhite);
203 return(antiqueWhite);
207 public static Brush Aqua {
208 get {
209 if (aqua==null) {
210 aqua=new SolidBrush(Color.Aqua);
212 return(aqua);
216 public static Brush Aquamarine {
217 get {
218 if (aquamarine==null) {
219 aquamarine=new SolidBrush(Color.Aquamarine);
221 return(aquamarine);
225 public static Brush Azure {
226 get {
227 if (azure==null) {
228 azure=new SolidBrush(Color.Azure);
230 return(azure);
234 public static Brush Beige {
235 get {
236 if (beige==null) {
237 beige=new SolidBrush(Color.Beige);
239 return(beige);
243 public static Brush Bisque {
244 get {
245 if (bisque==null) {
246 bisque=new SolidBrush(Color.Bisque);
248 return(bisque);
252 public static Brush Black {
253 get {
254 if (black==null) {
255 black=new SolidBrush(Color.Black);
257 return(black);
261 public static Brush BlanchedAlmond {
262 get {
263 if (blanchedAlmond==null) {
264 blanchedAlmond=new SolidBrush(Color.BlanchedAlmond);
266 return(blanchedAlmond);
270 public static Brush Blue {
271 get {
272 if (blue==null) {
273 blue=new SolidBrush(Color.Blue);
275 return(blue);
279 public static Brush BlueViolet {
280 get {
281 if (blueViolet==null) {
282 blueViolet=new SolidBrush(Color.BlueViolet);
284 return(blueViolet);
288 public static Brush Brown {
289 get {
290 if (brown==null) {
291 brown=new SolidBrush(Color.Brown);
293 return(brown);
297 public static Brush BurlyWood {
298 get {
299 if (burlyWood==null) {
300 burlyWood=new SolidBrush(Color.BurlyWood);
302 return(burlyWood);
306 public static Brush CadetBlue {
307 get {
308 if (cadetBlue==null) {
309 cadetBlue=new SolidBrush(Color.CadetBlue);
311 return(cadetBlue);
315 public static Brush Chartreuse {
316 get {
317 if (chartreuse==null) {
318 chartreuse=new SolidBrush(Color.Chartreuse);
320 return(chartreuse);
324 public static Brush Chocolate {
325 get {
326 if (chocolate==null) {
327 chocolate=new SolidBrush(Color.Chocolate);
329 return(chocolate);
333 public static Brush Coral {
334 get {
335 if (coral==null) {
336 coral=new SolidBrush(Color.Coral);
338 return(coral);
342 public static Brush CornflowerBlue {
343 get {
344 if (cornflowerBlue==null) {
345 cornflowerBlue=new SolidBrush(Color.CornflowerBlue);
347 return(cornflowerBlue);
351 public static Brush Cornsilk {
352 get {
353 if (cornsilk==null) {
354 cornsilk=new SolidBrush(Color.Cornsilk);
356 return(cornsilk);
360 public static Brush Crimson {
361 get {
362 if (crimson==null) {
363 crimson=new SolidBrush(Color.Crimson);
365 return(crimson);
369 public static Brush Cyan {
370 get {
371 if (cyan==null) {
372 cyan=new SolidBrush(Color.Cyan);
374 return(cyan);
378 public static Brush DarkBlue {
379 get {
380 if (darkBlue==null) {
381 darkBlue=new SolidBrush(Color.DarkBlue);
383 return(darkBlue);
387 public static Brush DarkCyan {
388 get {
389 if (darkCyan==null) {
390 darkCyan=new SolidBrush(Color.DarkCyan);
392 return(darkCyan);
396 public static Brush DarkGoldenrod {
397 get {
398 if (darkGoldenrod==null) {
399 darkGoldenrod=new SolidBrush(Color.DarkGoldenrod);
401 return(darkGoldenrod);
405 public static Brush DarkGray {
406 get {
407 if (darkGray==null) {
408 darkGray=new SolidBrush(Color.DarkGray);
410 return(darkGray);
414 public static Brush DarkGreen {
415 get {
416 if (darkGreen==null) {
417 darkGreen=new SolidBrush(Color.DarkGreen);
419 return(darkGreen);
423 public static Brush DarkKhaki {
424 get {
425 if (darkKhaki==null) {
426 darkKhaki=new SolidBrush(Color.DarkKhaki);
428 return(darkKhaki);
432 public static Brush DarkMagenta {
433 get {
434 if (darkMagenta==null) {
435 darkMagenta=new SolidBrush(Color.DarkMagenta);
437 return(darkMagenta);
441 public static Brush DarkOliveGreen {
442 get {
443 if (darkOliveGreen==null) {
444 darkOliveGreen=new SolidBrush(Color.DarkOliveGreen);
446 return(darkOliveGreen);
450 public static Brush DarkOrange {
451 get {
452 if (darkOrange==null) {
453 darkOrange=new SolidBrush(Color.DarkOrange);
455 return(darkOrange);
459 public static Brush DarkOrchid {
460 get {
461 if (darkOrchid==null) {
462 darkOrchid=new SolidBrush(Color.DarkOrchid);
464 return(darkOrchid);
468 public static Brush DarkRed {
469 get {
470 if (darkRed==null) {
471 darkRed=new SolidBrush(Color.DarkRed);
473 return(darkRed);
477 public static Brush DarkSalmon {
478 get {
479 if (darkSalmon==null) {
480 darkSalmon=new SolidBrush(Color.DarkSalmon);
482 return(darkSalmon);
486 public static Brush DarkSeaGreen {
487 get {
488 if (darkSeaGreen==null) {
489 darkSeaGreen=new SolidBrush(Color.DarkSeaGreen);
491 return(darkSeaGreen);
495 public static Brush DarkSlateBlue {
496 get {
497 if (darkSlateBlue==null) {
498 darkSlateBlue=new SolidBrush(Color.DarkSlateBlue);
500 return(darkSlateBlue);
504 public static Brush DarkSlateGray {
505 get {
506 if (darkSlateGray==null) {
507 darkSlateGray=new SolidBrush(Color.DarkSlateGray);
509 return(darkSlateGray);
513 public static Brush DarkTurquoise {
514 get {
515 if (darkTurquoise==null) {
516 darkTurquoise=new SolidBrush(Color.DarkTurquoise);
518 return(darkTurquoise);
522 public static Brush DarkViolet {
523 get {
524 if (darkViolet==null) {
525 darkViolet=new SolidBrush(Color.DarkViolet);
527 return(darkViolet);
531 public static Brush DeepPink {
532 get {
533 if (deepPink==null) {
534 deepPink=new SolidBrush(Color.DeepPink);
536 return(deepPink);
540 public static Brush DeepSkyBlue {
541 get {
542 if (deepSkyBlue==null) {
543 deepSkyBlue=new SolidBrush(Color.DeepSkyBlue);
545 return(deepSkyBlue);
549 public static Brush DimGray {
550 get {
551 if (dimGray==null) {
552 dimGray=new SolidBrush(Color.DimGray);
554 return(dimGray);
558 public static Brush DodgerBlue {
559 get {
560 if (dodgerBlue==null) {
561 dodgerBlue=new SolidBrush(Color.DodgerBlue);
563 return(dodgerBlue);
567 public static Brush Firebrick {
568 get {
569 if (firebrick==null) {
570 firebrick=new SolidBrush(Color.Firebrick);
572 return(firebrick);
576 public static Brush FloralWhite {
577 get {
578 if (floralWhite==null) {
579 floralWhite=new SolidBrush(Color.FloralWhite);
581 return(floralWhite);
585 public static Brush ForestGreen {
586 get {
587 if (forestGreen==null) {
588 forestGreen=new SolidBrush(Color.ForestGreen);
590 return(forestGreen);
594 public static Brush Fuchsia {
595 get {
596 if (fuchsia==null) {
597 fuchsia=new SolidBrush(Color.Fuchsia);
599 return(fuchsia);
603 public static Brush Gainsboro {
604 get {
605 if (gainsboro==null) {
606 gainsboro=new SolidBrush(Color.Gainsboro);
608 return(gainsboro);
612 public static Brush GhostWhite {
613 get {
614 if (ghostWhite==null) {
615 ghostWhite=new SolidBrush(Color.GhostWhite);
617 return(ghostWhite);
621 public static Brush Gold {
622 get {
623 if (gold==null) {
624 gold=new SolidBrush(Color.Gold);
626 return(gold);
630 public static Brush Goldenrod {
631 get {
632 if (goldenrod==null) {
633 goldenrod=new SolidBrush(Color.Goldenrod);
635 return(goldenrod);
639 public static Brush Gray {
640 get {
641 if (gray==null) {
642 gray=new SolidBrush(Color.Gray);
644 return(gray);
648 public static Brush Green {
649 get {
650 if (green==null) {
651 green=new SolidBrush(Color.Green);
653 return(green);
657 public static Brush GreenYellow {
658 get {
659 if (greenYellow==null) {
660 greenYellow=new SolidBrush(Color.GreenYellow);
662 return(greenYellow);
666 public static Brush Honeydew {
667 get {
668 if (honeydew==null) {
669 honeydew=new SolidBrush(Color.Honeydew);
671 return(honeydew);
675 public static Brush HotPink {
676 get {
677 if (hotPink==null) {
678 hotPink=new SolidBrush(Color.HotPink);
680 return(hotPink);
684 public static Brush IndianRed {
685 get {
686 if (indianRed==null) {
687 indianRed=new SolidBrush(Color.IndianRed);
689 return(indianRed);
693 public static Brush Indigo {
694 get {
695 if (indigo==null) {
696 indigo=new SolidBrush(Color.Indigo);
698 return(indigo);
702 public static Brush Ivory {
703 get {
704 if (ivory==null) {
705 ivory=new SolidBrush(Color.Ivory);
707 return(ivory);
711 public static Brush Khaki {
712 get {
713 if (khaki==null) {
714 khaki=new SolidBrush(Color.Khaki);
716 return(khaki);
720 public static Brush Lavender {
721 get {
722 if (lavender==null) {
723 lavender=new SolidBrush(Color.Lavender);
725 return(lavender);
729 public static Brush LavenderBlush {
730 get {
731 if (lavenderBlush==null) {
732 lavenderBlush=new SolidBrush(Color.LavenderBlush);
734 return(lavenderBlush);
738 public static Brush LawnGreen {
739 get {
740 if (lawnGreen==null) {
741 lawnGreen=new SolidBrush(Color.LawnGreen);
743 return(lawnGreen);
747 public static Brush LemonChiffon {
748 get {
749 if (lemonChiffon==null) {
750 lemonChiffon=new SolidBrush(Color.LemonChiffon);
752 return(lemonChiffon);
756 public static Brush LightBlue {
757 get {
758 if (lightBlue==null) {
759 lightBlue=new SolidBrush(Color.LightBlue);
761 return(lightBlue);
765 public static Brush LightCoral {
766 get {
767 if (lightCoral==null) {
768 lightCoral=new SolidBrush(Color.LightCoral);
770 return(lightCoral);
774 public static Brush LightCyan {
775 get {
776 if (lightCyan==null) {
777 lightCyan=new SolidBrush(Color.LightCyan);
779 return(lightCyan);
783 public static Brush LightGoldenrodYellow {
784 get {
785 if (lightGoldenrodYellow==null) {
786 lightGoldenrodYellow=new SolidBrush(Color.LightGoldenrodYellow);
788 return(lightGoldenrodYellow);
792 public static Brush LightGray {
793 get {
794 if (lightGray==null) {
795 lightGray=new SolidBrush(Color.LightGray);
797 return(lightGray);
801 public static Brush LightGreen {
802 get {
803 if (lightGreen==null) {
804 lightGreen=new SolidBrush(Color.LightGreen);
806 return(lightGreen);
810 public static Brush LightPink {
811 get {
812 if (lightPink==null) {
813 lightPink=new SolidBrush(Color.LightPink);
815 return(lightPink);
819 public static Brush LightSalmon {
820 get {
821 if (lightSalmon==null) {
822 lightSalmon=new SolidBrush(Color.LightSalmon);
824 return(lightSalmon);
828 public static Brush LightSeaGreen {
829 get {
830 if (lightSeaGreen==null) {
831 lightSeaGreen=new SolidBrush(Color.LightSeaGreen);
833 return(lightSeaGreen);
837 public static Brush LightSkyBlue {
838 get {
839 if (lightSkyBlue==null) {
840 lightSkyBlue=new SolidBrush(Color.LightSkyBlue);
842 return(lightSkyBlue);
846 public static Brush LightSlateGray {
847 get {
848 if (lightSlateGray==null) {
849 lightSlateGray=new SolidBrush(Color.LightSlateGray);
851 return(lightSlateGray);
855 public static Brush LightSteelBlue {
856 get {
857 if (lightSteelBlue==null) {
858 lightSteelBlue=new SolidBrush(Color.LightSteelBlue);
860 return(lightSteelBlue);
864 public static Brush LightYellow {
865 get {
866 if (lightYellow==null) {
867 lightYellow=new SolidBrush(Color.LightYellow);
869 return(lightYellow);
873 public static Brush Lime {
874 get {
875 if (lime==null) {
876 lime=new SolidBrush(Color.Lime);
878 return(lime);
882 public static Brush LimeGreen {
883 get {
884 if (limeGreen==null) {
885 limeGreen=new SolidBrush(Color.LimeGreen);
887 return(limeGreen);
891 public static Brush Linen {
892 get {
893 if (linen==null) {
894 linen=new SolidBrush(Color.Linen);
896 return(linen);
900 public static Brush Magenta {
901 get {
902 if (magenta==null) {
903 magenta=new SolidBrush(Color.Magenta);
905 return(magenta);
909 public static Brush Maroon {
910 get {
911 if (maroon==null) {
912 maroon=new SolidBrush(Color.Maroon);
914 return(maroon);
918 public static Brush MediumAquamarine {
919 get {
920 if (mediumAquamarine==null) {
921 mediumAquamarine=new SolidBrush(Color.MediumAquamarine);
923 return(mediumAquamarine);
927 public static Brush MediumBlue {
928 get {
929 if (mediumBlue==null) {
930 mediumBlue=new SolidBrush(Color.MediumBlue);
932 return(mediumBlue);
936 public static Brush MediumOrchid {
937 get {
938 if (mediumOrchid==null) {
939 mediumOrchid=new SolidBrush(Color.MediumOrchid);
941 return(mediumOrchid);
945 public static Brush MediumPurple {
946 get {
947 if (mediumPurple==null) {
948 mediumPurple=new SolidBrush(Color.MediumPurple);
950 return(mediumPurple);
954 public static Brush MediumSeaGreen {
955 get {
956 if (mediumSeaGreen==null) {
957 mediumSeaGreen=new SolidBrush(Color.MediumSeaGreen);
959 return(mediumSeaGreen);
963 public static Brush MediumSlateBlue {
964 get {
965 if (mediumSlateBlue==null) {
966 mediumSlateBlue=new SolidBrush(Color.MediumSlateBlue);
968 return(mediumSlateBlue);
972 public static Brush MediumSpringGreen {
973 get {
974 if (mediumSpringGreen==null) {
975 mediumSpringGreen=new SolidBrush(Color.MediumSpringGreen);
977 return(mediumSpringGreen);
981 public static Brush MediumTurquoise {
982 get {
983 if (mediumTurquoise==null) {
984 mediumTurquoise=new SolidBrush(Color.MediumTurquoise);
986 return(mediumTurquoise);
990 public static Brush MediumVioletRed {
991 get {
992 if (mediumVioletRed==null) {
993 mediumVioletRed=new SolidBrush(Color.MediumVioletRed);
995 return(mediumVioletRed);
999 public static Brush MidnightBlue {
1000 get {
1001 if (midnightBlue==null) {
1002 midnightBlue=new SolidBrush(Color.MidnightBlue);
1004 return(midnightBlue);
1008 public static Brush MintCream {
1009 get {
1010 if (mintCream==null) {
1011 mintCream=new SolidBrush(Color.MintCream);
1013 return(mintCream);
1017 public static Brush MistyRose {
1018 get {
1019 if (mistyRose==null) {
1020 mistyRose=new SolidBrush(Color.MistyRose);
1022 return(mistyRose);
1026 public static Brush Moccasin {
1027 get {
1028 if (moccasin==null) {
1029 moccasin=new SolidBrush(Color.Moccasin);
1031 return(moccasin);
1035 public static Brush NavajoWhite {
1036 get {
1037 if (navajoWhite==null) {
1038 navajoWhite=new SolidBrush(Color.NavajoWhite);
1040 return(navajoWhite);
1044 public static Brush Navy {
1045 get {
1046 if (navy==null) {
1047 navy=new SolidBrush(Color.Navy);
1049 return(navy);
1053 public static Brush OldLace {
1054 get {
1055 if (oldLace==null) {
1056 oldLace=new SolidBrush(Color.OldLace);
1058 return(oldLace);
1062 public static Brush Olive {
1063 get {
1064 if (olive==null) {
1065 olive=new SolidBrush(Color.Olive);
1067 return(olive);
1071 public static Brush OliveDrab {
1072 get {
1073 if (oliveDrab==null) {
1074 oliveDrab=new SolidBrush(Color.OliveDrab);
1076 return(oliveDrab);
1080 public static Brush Orange {
1081 get {
1082 if (orange==null) {
1083 orange=new SolidBrush(Color.Orange);
1085 return(orange);
1089 public static Brush OrangeRed {
1090 get {
1091 if (orangeRed==null) {
1092 orangeRed=new SolidBrush(Color.OrangeRed);
1094 return(orangeRed);
1098 public static Brush Orchid {
1099 get {
1100 if (orchid==null) {
1101 orchid=new SolidBrush(Color.Orchid);
1103 return(orchid);
1107 public static Brush PaleGoldenrod {
1108 get {
1109 if (paleGoldenrod==null) {
1110 paleGoldenrod=new SolidBrush(Color.PaleGoldenrod);
1112 return(paleGoldenrod);
1116 public static Brush PaleGreen {
1117 get {
1118 if (paleGreen==null) {
1119 paleGreen=new SolidBrush(Color.PaleGreen);
1121 return(paleGreen);
1125 public static Brush PaleTurquoise {
1126 get {
1127 if (paleTurquoise==null) {
1128 paleTurquoise=new SolidBrush(Color.PaleTurquoise);
1130 return(paleTurquoise);
1134 public static Brush PaleVioletRed {
1135 get {
1136 if (paleVioletRed==null) {
1137 paleVioletRed=new SolidBrush(Color.PaleVioletRed);
1139 return(paleVioletRed);
1143 public static Brush PapayaWhip {
1144 get {
1145 if (papayaWhip==null) {
1146 papayaWhip=new SolidBrush(Color.PapayaWhip);
1148 return(papayaWhip);
1152 public static Brush PeachPuff {
1153 get {
1154 if (peachPuff==null) {
1155 peachPuff=new SolidBrush(Color.PeachPuff);
1157 return(peachPuff);
1161 public static Brush Peru {
1162 get {
1163 if (peru==null) {
1164 peru=new SolidBrush(Color.Peru);
1166 return(peru);
1170 public static Brush Pink {
1171 get {
1172 if (pink==null) {
1173 pink=new SolidBrush(Color.Pink);
1175 return(pink);
1179 public static Brush Plum {
1180 get {
1181 if (plum==null) {
1182 plum=new SolidBrush(Color.Plum);
1184 return(plum);
1188 public static Brush PowderBlue {
1189 get {
1190 if (powderBlue==null) {
1191 powderBlue=new SolidBrush(Color.PowderBlue);
1193 return(powderBlue);
1197 public static Brush Purple {
1198 get {
1199 if (purple==null) {
1200 purple=new SolidBrush(Color.Purple);
1202 return(purple);
1206 public static Brush Red {
1207 get {
1208 if (red==null) {
1209 red=new SolidBrush(Color.Red);
1211 return(red);
1215 public static Brush RosyBrown {
1216 get {
1217 if (rosyBrown==null) {
1218 rosyBrown=new SolidBrush(Color.RosyBrown);
1220 return(rosyBrown);
1224 public static Brush RoyalBlue {
1225 get {
1226 if (royalBlue==null) {
1227 royalBlue=new SolidBrush(Color.RoyalBlue);
1229 return(royalBlue);
1233 public static Brush SaddleBrown {
1234 get {
1235 if (saddleBrown==null) {
1236 saddleBrown=new SolidBrush(Color.SaddleBrown);
1238 return(saddleBrown);
1242 public static Brush Salmon {
1243 get {
1244 if (salmon==null) {
1245 salmon=new SolidBrush(Color.Salmon);
1247 return(salmon);
1251 public static Brush SandyBrown {
1252 get {
1253 if (sandyBrown==null) {
1254 sandyBrown=new SolidBrush(Color.SandyBrown);
1256 return(sandyBrown);
1260 public static Brush SeaGreen {
1261 get {
1262 if (seaGreen==null) {
1263 seaGreen=new SolidBrush(Color.SeaGreen);
1265 return(seaGreen);
1269 public static Brush SeaShell {
1270 get {
1271 if (seaShell==null) {
1272 seaShell=new SolidBrush(Color.SeaShell);
1274 return(seaShell);
1278 public static Brush Sienna {
1279 get {
1280 if (sienna==null) {
1281 sienna=new SolidBrush(Color.Sienna);
1283 return(sienna);
1287 public static Brush Silver {
1288 get {
1289 if (silver==null) {
1290 silver=new SolidBrush(Color.Silver);
1292 return(silver);
1296 public static Brush SkyBlue {
1297 get {
1298 if (skyBlue==null) {
1299 skyBlue=new SolidBrush(Color.SkyBlue);
1301 return(skyBlue);
1305 public static Brush SlateBlue {
1306 get {
1307 if (slateBlue==null) {
1308 slateBlue=new SolidBrush(Color.SlateBlue);
1310 return(slateBlue);
1314 public static Brush SlateGray {
1315 get {
1316 if (slateGray==null) {
1317 slateGray=new SolidBrush(Color.SlateGray);
1319 return(slateGray);
1323 public static Brush Snow {
1324 get {
1325 if (snow==null) {
1326 snow=new SolidBrush(Color.Snow);
1328 return(snow);
1332 public static Brush SpringGreen {
1333 get {
1334 if (springGreen==null) {
1335 springGreen=new SolidBrush(Color.SpringGreen);
1337 return(springGreen);
1341 public static Brush SteelBlue {
1342 get {
1343 if (steelBlue==null) {
1344 steelBlue=new SolidBrush(Color.SteelBlue);
1346 return(steelBlue);
1350 public static Brush Tan {
1351 get {
1352 if (tan==null) {
1353 tan=new SolidBrush(Color.Tan);
1355 return(tan);
1359 public static Brush Teal {
1360 get {
1361 if (teal==null) {
1362 teal=new SolidBrush(Color.Teal);
1364 return(teal);
1368 public static Brush Thistle {
1369 get {
1370 if (thistle==null) {
1371 thistle=new SolidBrush(Color.Thistle);
1373 return(thistle);
1377 public static Brush Tomato {
1378 get {
1379 if (tomato==null) {
1380 tomato=new SolidBrush(Color.Tomato);
1382 return(tomato);
1386 public static Brush Transparent {
1387 get {
1388 if (transparent==null) {
1389 transparent=new SolidBrush(Color.Transparent);
1391 return(transparent);
1395 public static Brush Turquoise {
1396 get {
1397 if (turquoise==null) {
1398 turquoise=new SolidBrush(Color.Turquoise);
1400 return(turquoise);
1404 public static Brush Violet {
1405 get {
1406 if (violet==null) {
1407 violet=new SolidBrush(Color.Violet);
1409 return(violet);
1413 public static Brush Wheat {
1414 get {
1415 if (wheat==null) {
1416 wheat=new SolidBrush(Color.Wheat);
1418 return(wheat);
1422 public static Brush White {
1423 get {
1424 if (white==null) {
1425 white=new SolidBrush(Color.White);
1427 return(white);
1431 public static Brush WhiteSmoke {
1432 get {
1433 if (whiteSmoke==null) {
1434 whiteSmoke=new SolidBrush(Color.WhiteSmoke);
1436 return(whiteSmoke);
1440 public static Brush Yellow {
1441 get {
1442 if (yellow==null) {
1443 yellow=new SolidBrush(Color.Yellow);
1445 return(yellow);
1449 public static Brush YellowGreen {
1450 get {
1451 if (yellowGreen==null) {
1452 yellowGreen=new SolidBrush(Color.YellowGreen);
1454 return(yellowGreen);