Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Drawing.cs « net_4_x « profiles - github.com/mono/api-snapshot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 137a70b84639d06bb44687c02b93243af2c384e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

[assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
[assembly:System.CLSCompliantAttribute(true)]
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
[assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
[assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Drawing.dll")]
[assembly:System.Reflection.AssemblyDescriptionAttribute("System.Drawing.dll")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("4.6.57.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.6.57.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
[assembly:System.Reflection.AssemblyTitleAttribute("System.Drawing.dll")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(System.Runtime.CompilerServices.CompilationRelaxations.NoStringInterning)]
[assembly:System.Runtime.CompilerServices.DependencyAttribute("System,", System.Runtime.CompilerServices.LoadHint.Always)]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
namespace System
{
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute
    {
        public MonoDocumentationNoteAttribute(string comment) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    internal partial class MonoExtensionAttribute : System.MonoTODOAttribute
    {
        public MonoExtensionAttribute(string comment) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute
    {
        public MonoInternalNoteAttribute(string comment) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    internal partial class MonoLimitationAttribute : System.MonoTODOAttribute
    {
        public MonoLimitationAttribute(string comment) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute
    {
        public MonoNotSupportedAttribute(string comment) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    internal partial class MonoTODOAttribute : System.Attribute
    {
        public MonoTODOAttribute() { }
        public MonoTODOAttribute(string comment) { }
        public string Comment { get { throw null; } }
    }
}
namespace System.Drawing
{
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.BitmapEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    [System.Runtime.InteropServices.ComVisibleAttribute(true)]
    [System.SerializableAttribute]
    public sealed partial class Bitmap : System.Drawing.Image
    {
        public Bitmap(System.Drawing.Image original) { }
        public Bitmap(System.Drawing.Image original, System.Drawing.Size newSize) { }
        public Bitmap(System.Drawing.Image original, int width, int height) { }
        public Bitmap(int width, int height) { }
        public Bitmap(int width, int height, System.Drawing.Graphics g) { }
        public Bitmap(int width, int height, System.Drawing.Imaging.PixelFormat format) { }
        public Bitmap(int width, int height, int stride, System.Drawing.Imaging.PixelFormat format, System.IntPtr scan0) { }
        public Bitmap(System.IO.Stream stream) { }
        public Bitmap(System.IO.Stream stream, bool useIcm) { }
        public Bitmap(string filename) { }
        public Bitmap(string filename, bool useIcm) { }
        public Bitmap(System.Type type, string resource) { }
        public System.Drawing.Bitmap Clone(System.Drawing.Rectangle rect, System.Drawing.Imaging.PixelFormat format) { throw null; }
        public System.Drawing.Bitmap Clone(System.Drawing.RectangleF rect, System.Drawing.Imaging.PixelFormat format) { throw null; }
        public static System.Drawing.Bitmap FromHicon(System.IntPtr hicon) { throw null; }
        public static System.Drawing.Bitmap FromResource(System.IntPtr hinstance, string bitmapName) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public System.IntPtr GetHbitmap() { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public System.IntPtr GetHbitmap(System.Drawing.Color background) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public System.IntPtr GetHicon() { throw null; }
        public System.Drawing.Color GetPixel(int x, int y) { throw null; }
        public System.Drawing.Imaging.BitmapData LockBits(System.Drawing.Rectangle rect, System.Drawing.Imaging.ImageLockMode flags, System.Drawing.Imaging.PixelFormat format) { throw null; }
        public System.Drawing.Imaging.BitmapData LockBits(System.Drawing.Rectangle rect, System.Drawing.Imaging.ImageLockMode flags, System.Drawing.Imaging.PixelFormat format, System.Drawing.Imaging.BitmapData bitmapData) { throw null; }
        public void MakeTransparent() { }
        public void MakeTransparent(System.Drawing.Color transparentColor) { }
        public void SetPixel(int x, int y, System.Drawing.Color color) { }
        public void SetResolution(float xDpi, float yDpi) { }
        public void UnlockBits(System.Drawing.Imaging.BitmapData bitmapdata) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly)]
    public partial class BitmapSuffixInSameAssemblyAttribute : System.Attribute
    {
        public BitmapSuffixInSameAssemblyAttribute() { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Assembly)]
    public partial class BitmapSuffixInSatelliteAssemblyAttribute : System.Attribute
    {
        public BitmapSuffixInSatelliteAssemblyAttribute() { }
    }
    public abstract partial class Brush : System.MarshalByRefObject, System.ICloneable, System.IDisposable
    {
        protected Brush() { }
        public abstract object Clone();
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        ~Brush() { }
        protected internal void SetNativeBrush(System.IntPtr brush) { }
    }
    public sealed partial class Brushes
    {
        internal Brushes() { }
        public static System.Drawing.Brush AliceBlue { get { throw null; } }
        public static System.Drawing.Brush AntiqueWhite { get { throw null; } }
        public static System.Drawing.Brush Aqua { get { throw null; } }
        public static System.Drawing.Brush Aquamarine { get { throw null; } }
        public static System.Drawing.Brush Azure { get { throw null; } }
        public static System.Drawing.Brush Beige { get { throw null; } }
        public static System.Drawing.Brush Bisque { get { throw null; } }
        public static System.Drawing.Brush Black { get { throw null; } }
        public static System.Drawing.Brush BlanchedAlmond { get { throw null; } }
        public static System.Drawing.Brush Blue { get { throw null; } }
        public static System.Drawing.Brush BlueViolet { get { throw null; } }
        public static System.Drawing.Brush Brown { get { throw null; } }
        public static System.Drawing.Brush BurlyWood { get { throw null; } }
        public static System.Drawing.Brush CadetBlue { get { throw null; } }
        public static System.Drawing.Brush Chartreuse { get { throw null; } }
        public static System.Drawing.Brush Chocolate { get { throw null; } }
        public static System.Drawing.Brush Coral { get { throw null; } }
        public static System.Drawing.Brush CornflowerBlue { get { throw null; } }
        public static System.Drawing.Brush Cornsilk { get { throw null; } }
        public static System.Drawing.Brush Crimson { get { throw null; } }
        public static System.Drawing.Brush Cyan { get { throw null; } }
        public static System.Drawing.Brush DarkBlue { get { throw null; } }
        public static System.Drawing.Brush DarkCyan { get { throw null; } }
        public static System.Drawing.Brush DarkGoldenrod { get { throw null; } }
        public static System.Drawing.Brush DarkGray { get { throw null; } }
        public static System.Drawing.Brush DarkGreen { get { throw null; } }
        public static System.Drawing.Brush DarkKhaki { get { throw null; } }
        public static System.Drawing.Brush DarkMagenta { get { throw null; } }
        public static System.Drawing.Brush DarkOliveGreen { get { throw null; } }
        public static System.Drawing.Brush DarkOrange { get { throw null; } }
        public static System.Drawing.Brush DarkOrchid { get { throw null; } }
        public static System.Drawing.Brush DarkRed { get { throw null; } }
        public static System.Drawing.Brush DarkSalmon { get { throw null; } }
        public static System.Drawing.Brush DarkSeaGreen { get { throw null; } }
        public static System.Drawing.Brush DarkSlateBlue { get { throw null; } }
        public static System.Drawing.Brush DarkSlateGray { get { throw null; } }
        public static System.Drawing.Brush DarkTurquoise { get { throw null; } }
        public static System.Drawing.Brush DarkViolet { get { throw null; } }
        public static System.Drawing.Brush DeepPink { get { throw null; } }
        public static System.Drawing.Brush DeepSkyBlue { get { throw null; } }
        public static System.Drawing.Brush DimGray { get { throw null; } }
        public static System.Drawing.Brush DodgerBlue { get { throw null; } }
        public static System.Drawing.Brush Firebrick { get { throw null; } }
        public static System.Drawing.Brush FloralWhite { get { throw null; } }
        public static System.Drawing.Brush ForestGreen { get { throw null; } }
        public static System.Drawing.Brush Fuchsia { get { throw null; } }
        public static System.Drawing.Brush Gainsboro { get { throw null; } }
        public static System.Drawing.Brush GhostWhite { get { throw null; } }
        public static System.Drawing.Brush Gold { get { throw null; } }
        public static System.Drawing.Brush Goldenrod { get { throw null; } }
        public static System.Drawing.Brush Gray { get { throw null; } }
        public static System.Drawing.Brush Green { get { throw null; } }
        public static System.Drawing.Brush GreenYellow { get { throw null; } }
        public static System.Drawing.Brush Honeydew { get { throw null; } }
        public static System.Drawing.Brush HotPink { get { throw null; } }
        public static System.Drawing.Brush IndianRed { get { throw null; } }
        public static System.Drawing.Brush Indigo { get { throw null; } }
        public static System.Drawing.Brush Ivory { get { throw null; } }
        public static System.Drawing.Brush Khaki { get { throw null; } }
        public static System.Drawing.Brush Lavender { get { throw null; } }
        public static System.Drawing.Brush LavenderBlush { get { throw null; } }
        public static System.Drawing.Brush LawnGreen { get { throw null; } }
        public static System.Drawing.Brush LemonChiffon { get { throw null; } }
        public static System.Drawing.Brush LightBlue { get { throw null; } }
        public static System.Drawing.Brush LightCoral { get { throw null; } }
        public static System.Drawing.Brush LightCyan { get { throw null; } }
        public static System.Drawing.Brush LightGoldenrodYellow { get { throw null; } }
        public static System.Drawing.Brush LightGray { get { throw null; } }
        public static System.Drawing.Brush LightGreen { get { throw null; } }
        public static System.Drawing.Brush LightPink { get { throw null; } }
        public static System.Drawing.Brush LightSalmon { get { throw null; } }
        public static System.Drawing.Brush LightSeaGreen { get { throw null; } }
        public static System.Drawing.Brush LightSkyBlue { get { throw null; } }
        public static System.Drawing.Brush LightSlateGray { get { throw null; } }
        public static System.Drawing.Brush LightSteelBlue { get { throw null; } }
        public static System.Drawing.Brush LightYellow { get { throw null; } }
        public static System.Drawing.Brush Lime { get { throw null; } }
        public static System.Drawing.Brush LimeGreen { get { throw null; } }
        public static System.Drawing.Brush Linen { get { throw null; } }
        public static System.Drawing.Brush Magenta { get { throw null; } }
        public static System.Drawing.Brush Maroon { get { throw null; } }
        public static System.Drawing.Brush MediumAquamarine { get { throw null; } }
        public static System.Drawing.Brush MediumBlue { get { throw null; } }
        public static System.Drawing.Brush MediumOrchid { get { throw null; } }
        public static System.Drawing.Brush MediumPurple { get { throw null; } }
        public static System.Drawing.Brush MediumSeaGreen { get { throw null; } }
        public static System.Drawing.Brush MediumSlateBlue { get { throw null; } }
        public static System.Drawing.Brush MediumSpringGreen { get { throw null; } }
        public static System.Drawing.Brush MediumTurquoise { get { throw null; } }
        public static System.Drawing.Brush MediumVioletRed { get { throw null; } }
        public static System.Drawing.Brush MidnightBlue { get { throw null; } }
        public static System.Drawing.Brush MintCream { get { throw null; } }
        public static System.Drawing.Brush MistyRose { get { throw null; } }
        public static System.Drawing.Brush Moccasin { get { throw null; } }
        public static System.Drawing.Brush NavajoWhite { get { throw null; } }
        public static System.Drawing.Brush Navy { get { throw null; } }
        public static System.Drawing.Brush OldLace { get { throw null; } }
        public static System.Drawing.Brush Olive { get { throw null; } }
        public static System.Drawing.Brush OliveDrab { get { throw null; } }
        public static System.Drawing.Brush Orange { get { throw null; } }
        public static System.Drawing.Brush OrangeRed { get { throw null; } }
        public static System.Drawing.Brush Orchid { get { throw null; } }
        public static System.Drawing.Brush PaleGoldenrod { get { throw null; } }
        public static System.Drawing.Brush PaleGreen { get { throw null; } }
        public static System.Drawing.Brush PaleTurquoise { get { throw null; } }
        public static System.Drawing.Brush PaleVioletRed { get { throw null; } }
        public static System.Drawing.Brush PapayaWhip { get { throw null; } }
        public static System.Drawing.Brush PeachPuff { get { throw null; } }
        public static System.Drawing.Brush Peru { get { throw null; } }
        public static System.Drawing.Brush Pink { get { throw null; } }
        public static System.Drawing.Brush Plum { get { throw null; } }
        public static System.Drawing.Brush PowderBlue { get { throw null; } }
        public static System.Drawing.Brush Purple { get { throw null; } }
        public static System.Drawing.Brush Red { get { throw null; } }
        public static System.Drawing.Brush RosyBrown { get { throw null; } }
        public static System.Drawing.Brush RoyalBlue { get { throw null; } }
        public static System.Drawing.Brush SaddleBrown { get { throw null; } }
        public static System.Drawing.Brush Salmon { get { throw null; } }
        public static System.Drawing.Brush SandyBrown { get { throw null; } }
        public static System.Drawing.Brush SeaGreen { get { throw null; } }
        public static System.Drawing.Brush SeaShell { get { throw null; } }
        public static System.Drawing.Brush Sienna { get { throw null; } }
        public static System.Drawing.Brush Silver { get { throw null; } }
        public static System.Drawing.Brush SkyBlue { get { throw null; } }
        public static System.Drawing.Brush SlateBlue { get { throw null; } }
        public static System.Drawing.Brush SlateGray { get { throw null; } }
        public static System.Drawing.Brush Snow { get { throw null; } }
        public static System.Drawing.Brush SpringGreen { get { throw null; } }
        public static System.Drawing.Brush SteelBlue { get { throw null; } }
        public static System.Drawing.Brush Tan { get { throw null; } }
        public static System.Drawing.Brush Teal { get { throw null; } }
        public static System.Drawing.Brush Thistle { get { throw null; } }
        public static System.Drawing.Brush Tomato { get { throw null; } }
        public static System.Drawing.Brush Transparent { get { throw null; } }
        public static System.Drawing.Brush Turquoise { get { throw null; } }
        public static System.Drawing.Brush Violet { get { throw null; } }
        public static System.Drawing.Brush Wheat { get { throw null; } }
        public static System.Drawing.Brush White { get { throw null; } }
        public static System.Drawing.Brush WhiteSmoke { get { throw null; } }
        public static System.Drawing.Brush Yellow { get { throw null; } }
        public static System.Drawing.Brush YellowGreen { get { throw null; } }
    }
    public sealed partial class BufferedGraphics : System.IDisposable
    {
        internal BufferedGraphics() { }
        public System.Drawing.Graphics Graphics { get { throw null; } }
        public void Dispose() { }
        ~BufferedGraphics() { }
        public void Render() { }
        public void Render(System.Drawing.Graphics target) { }
        [System.MonoTODOAttribute("The targetDC parameter has no equivalent in libgdiplus.")]
        public void Render(System.IntPtr targetDC) { }
    }
    public sealed partial class BufferedGraphicsContext : System.IDisposable
    {
        public BufferedGraphicsContext() { }
        public System.Drawing.Size MaximumBuffer { get { throw null; } set { } }
        public System.Drawing.BufferedGraphics Allocate(System.Drawing.Graphics targetGraphics, System.Drawing.Rectangle targetRectangle) { throw null; }
        [System.MonoTODOAttribute("The targetDC parameter has no equivalent in libgdiplus.")]
        public System.Drawing.BufferedGraphics Allocate(System.IntPtr targetDC, System.Drawing.Rectangle targetRectangle) { throw null; }
        public void Dispose() { }
        ~BufferedGraphicsContext() { }
        public void Invalidate() { }
    }
    public sealed partial class BufferedGraphicsManager
    {
        internal BufferedGraphicsManager() { }
        public static System.Drawing.BufferedGraphicsContext Current { get { throw null; } }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct CharacterRange
    {
        private int _dummyPrimitive;
        public CharacterRange(int First, int Length) { throw null; }
        public int First { get { throw null; } set { } }
        public int Length { get { throw null; } set { } }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static bool operator ==(System.Drawing.CharacterRange cr1, System.Drawing.CharacterRange cr2) { throw null; }
        public static bool operator !=(System.Drawing.CharacterRange cr1, System.Drawing.CharacterRange cr2) { throw null; }
    }
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.ColorEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.ColorConverter))]
    [System.Diagnostics.DebuggerDisplayAttribute("{NameAndARGBValue}")]
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public readonly partial struct Color : System.IEquatable<System.Drawing.Color>
    {
        private readonly object _dummy;
        private readonly int _dummyPrimitive;
        public static readonly System.Drawing.Color Empty;
        public byte A { get { throw null; } }
        public static System.Drawing.Color AliceBlue { get { throw null; } }
        public static System.Drawing.Color AntiqueWhite { get { throw null; } }
        public static System.Drawing.Color Aqua { get { throw null; } }
        public static System.Drawing.Color Aquamarine { get { throw null; } }
        public static System.Drawing.Color Azure { get { throw null; } }
        public byte B { get { throw null; } }
        public static System.Drawing.Color Beige { get { throw null; } }
        public static System.Drawing.Color Bisque { get { throw null; } }
        public static System.Drawing.Color Black { get { throw null; } }
        public static System.Drawing.Color BlanchedAlmond { get { throw null; } }
        public static System.Drawing.Color Blue { get { throw null; } }
        public static System.Drawing.Color BlueViolet { get { throw null; } }
        public static System.Drawing.Color Brown { get { throw null; } }
        public static System.Drawing.Color BurlyWood { get { throw null; } }
        public static System.Drawing.Color CadetBlue { get { throw null; } }
        public static System.Drawing.Color Chartreuse { get { throw null; } }
        public static System.Drawing.Color Chocolate { get { throw null; } }
        public static System.Drawing.Color Coral { get { throw null; } }
        public static System.Drawing.Color CornflowerBlue { get { throw null; } }
        public static System.Drawing.Color Cornsilk { get { throw null; } }
        public static System.Drawing.Color Crimson { get { throw null; } }
        public static System.Drawing.Color Cyan { get { throw null; } }
        public static System.Drawing.Color DarkBlue { get { throw null; } }
        public static System.Drawing.Color DarkCyan { get { throw null; } }
        public static System.Drawing.Color DarkGoldenrod { get { throw null; } }
        public static System.Drawing.Color DarkGray { get { throw null; } }
        public static System.Drawing.Color DarkGreen { get { throw null; } }
        public static System.Drawing.Color DarkKhaki { get { throw null; } }
        public static System.Drawing.Color DarkMagenta { get { throw null; } }
        public static System.Drawing.Color DarkOliveGreen { get { throw null; } }
        public static System.Drawing.Color DarkOrange { get { throw null; } }
        public static System.Drawing.Color DarkOrchid { get { throw null; } }
        public static System.Drawing.Color DarkRed { get { throw null; } }
        public static System.Drawing.Color DarkSalmon { get { throw null; } }
        public static System.Drawing.Color DarkSeaGreen { get { throw null; } }
        public static System.Drawing.Color DarkSlateBlue { get { throw null; } }
        public static System.Drawing.Color DarkSlateGray { get { throw null; } }
        public static System.Drawing.Color DarkTurquoise { get { throw null; } }
        public static System.Drawing.Color DarkViolet { get { throw null; } }
        public static System.Drawing.Color DeepPink { get { throw null; } }
        public static System.Drawing.Color DeepSkyBlue { get { throw null; } }
        public static System.Drawing.Color DimGray { get { throw null; } }
        public static System.Drawing.Color DodgerBlue { get { throw null; } }
        public static System.Drawing.Color Firebrick { get { throw null; } }
        public static System.Drawing.Color FloralWhite { get { throw null; } }
        public static System.Drawing.Color ForestGreen { get { throw null; } }
        public static System.Drawing.Color Fuchsia { get { throw null; } }
        public byte G { get { throw null; } }
        public static System.Drawing.Color Gainsboro { get { throw null; } }
        public static System.Drawing.Color GhostWhite { get { throw null; } }
        public static System.Drawing.Color Gold { get { throw null; } }
        public static System.Drawing.Color Goldenrod { get { throw null; } }
        public static System.Drawing.Color Gray { get { throw null; } }
        public static System.Drawing.Color Green { get { throw null; } }
        public static System.Drawing.Color GreenYellow { get { throw null; } }
        public static System.Drawing.Color Honeydew { get { throw null; } }
        public static System.Drawing.Color HotPink { get { throw null; } }
        public static System.Drawing.Color IndianRed { get { throw null; } }
        public static System.Drawing.Color Indigo { get { throw null; } }
        public bool IsEmpty { get { throw null; } }
        public bool IsKnownColor { get { throw null; } }
        public bool IsNamedColor { get { throw null; } }
        public bool IsSystemColor { get { throw null; } }
        public static System.Drawing.Color Ivory { get { throw null; } }
        public static System.Drawing.Color Khaki { get { throw null; } }
        public static System.Drawing.Color Lavender { get { throw null; } }
        public static System.Drawing.Color LavenderBlush { get { throw null; } }
        public static System.Drawing.Color LawnGreen { get { throw null; } }
        public static System.Drawing.Color LemonChiffon { get { throw null; } }
        public static System.Drawing.Color LightBlue { get { throw null; } }
        public static System.Drawing.Color LightCoral { get { throw null; } }
        public static System.Drawing.Color LightCyan { get { throw null; } }
        public static System.Drawing.Color LightGoldenrodYellow { get { throw null; } }
        public static System.Drawing.Color LightGray { get { throw null; } }
        public static System.Drawing.Color LightGreen { get { throw null; } }
        public static System.Drawing.Color LightPink { get { throw null; } }
        public static System.Drawing.Color LightSalmon { get { throw null; } }
        public static System.Drawing.Color LightSeaGreen { get { throw null; } }
        public static System.Drawing.Color LightSkyBlue { get { throw null; } }
        public static System.Drawing.Color LightSlateGray { get { throw null; } }
        public static System.Drawing.Color LightSteelBlue { get { throw null; } }
        public static System.Drawing.Color LightYellow { get { throw null; } }
        public static System.Drawing.Color Lime { get { throw null; } }
        public static System.Drawing.Color LimeGreen { get { throw null; } }
        public static System.Drawing.Color Linen { get { throw null; } }
        public static System.Drawing.Color Magenta { get { throw null; } }
        public static System.Drawing.Color Maroon { get { throw null; } }
        public static System.Drawing.Color MediumAquamarine { get { throw null; } }
        public static System.Drawing.Color MediumBlue { get { throw null; } }
        public static System.Drawing.Color MediumOrchid { get { throw null; } }
        public static System.Drawing.Color MediumPurple { get { throw null; } }
        public static System.Drawing.Color MediumSeaGreen { get { throw null; } }
        public static System.Drawing.Color MediumSlateBlue { get { throw null; } }
        public static System.Drawing.Color MediumSpringGreen { get { throw null; } }
        public static System.Drawing.Color MediumTurquoise { get { throw null; } }
        public static System.Drawing.Color MediumVioletRed { get { throw null; } }
        public static System.Drawing.Color MidnightBlue { get { throw null; } }
        public static System.Drawing.Color MintCream { get { throw null; } }
        public static System.Drawing.Color MistyRose { get { throw null; } }
        public static System.Drawing.Color Moccasin { get { throw null; } }
        public string Name { get { throw null; } }
        public static System.Drawing.Color NavajoWhite { get { throw null; } }
        public static System.Drawing.Color Navy { get { throw null; } }
        public static System.Drawing.Color OldLace { get { throw null; } }
        public static System.Drawing.Color Olive { get { throw null; } }
        public static System.Drawing.Color OliveDrab { get { throw null; } }
        public static System.Drawing.Color Orange { get { throw null; } }
        public static System.Drawing.Color OrangeRed { get { throw null; } }
        public static System.Drawing.Color Orchid { get { throw null; } }
        public static System.Drawing.Color PaleGoldenrod { get { throw null; } }
        public static System.Drawing.Color PaleGreen { get { throw null; } }
        public static System.Drawing.Color PaleTurquoise { get { throw null; } }
        public static System.Drawing.Color PaleVioletRed { get { throw null; } }
        public static System.Drawing.Color PapayaWhip { get { throw null; } }
        public static System.Drawing.Color PeachPuff { get { throw null; } }
        public static System.Drawing.Color Peru { get { throw null; } }
        public static System.Drawing.Color Pink { get { throw null; } }
        public static System.Drawing.Color Plum { get { throw null; } }
        public static System.Drawing.Color PowderBlue { get { throw null; } }
        public static System.Drawing.Color Purple { get { throw null; } }
        public byte R { get { throw null; } }
        public static System.Drawing.Color Red { get { throw null; } }
        public static System.Drawing.Color RosyBrown { get { throw null; } }
        public static System.Drawing.Color RoyalBlue { get { throw null; } }
        public static System.Drawing.Color SaddleBrown { get { throw null; } }
        public static System.Drawing.Color Salmon { get { throw null; } }
        public static System.Drawing.Color SandyBrown { get { throw null; } }
        public static System.Drawing.Color SeaGreen { get { throw null; } }
        public static System.Drawing.Color SeaShell { get { throw null; } }
        public static System.Drawing.Color Sienna { get { throw null; } }
        public static System.Drawing.Color Silver { get { throw null; } }
        public static System.Drawing.Color SkyBlue { get { throw null; } }
        public static System.Drawing.Color SlateBlue { get { throw null; } }
        public static System.Drawing.Color SlateGray { get { throw null; } }
        public static System.Drawing.Color Snow { get { throw null; } }
        public static System.Drawing.Color SpringGreen { get { throw null; } }
        public static System.Drawing.Color SteelBlue { get { throw null; } }
        public static System.Drawing.Color Tan { get { throw null; } }
        public static System.Drawing.Color Teal { get { throw null; } }
        public static System.Drawing.Color Thistle { get { throw null; } }
        public static System.Drawing.Color Tomato { get { throw null; } }
        public static System.Drawing.Color Transparent { get { throw null; } }
        public static System.Drawing.Color Turquoise { get { throw null; } }
        public static System.Drawing.Color Violet { get { throw null; } }
        public static System.Drawing.Color Wheat { get { throw null; } }
        public static System.Drawing.Color White { get { throw null; } }
        public static System.Drawing.Color WhiteSmoke { get { throw null; } }
        public static System.Drawing.Color Yellow { get { throw null; } }
        public static System.Drawing.Color YellowGreen { get { throw null; } }
        public bool Equals(System.Drawing.Color other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public static System.Drawing.Color FromArgb(int argb) { throw null; }
        public static System.Drawing.Color FromArgb(int alpha, System.Drawing.Color baseColor) { throw null; }
        public static System.Drawing.Color FromArgb(int red, int green, int blue) { throw null; }
        public static System.Drawing.Color FromArgb(int alpha, int red, int green, int blue) { throw null; }
        public static System.Drawing.Color FromKnownColor(System.Drawing.KnownColor color) { throw null; }
        public static System.Drawing.Color FromName(string name) { throw null; }
        public float GetBrightness() { throw null; }
        public override int GetHashCode() { throw null; }
        public float GetHue() { throw null; }
        public float GetSaturation() { throw null; }
        public static bool operator ==(System.Drawing.Color left, System.Drawing.Color right) { throw null; }
        public static bool operator !=(System.Drawing.Color left, System.Drawing.Color right) { throw null; }
        public int ToArgb() { throw null; }
        public System.Drawing.KnownColor ToKnownColor() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class ColorConverter : System.ComponentModel.TypeConverter
    {
        public ColorConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    public sealed partial class ColorTranslator
    {
        internal ColorTranslator() { }
        public static System.Drawing.Color FromHtml(string htmlColor) { throw null; }
        public static System.Drawing.Color FromOle(int oleColor) { throw null; }
        public static System.Drawing.Color FromWin32(int win32Color) { throw null; }
        public static string ToHtml(System.Drawing.Color c) { throw null; }
        public static int ToOle(System.Drawing.Color c) { throw null; }
        public static int ToWin32(System.Drawing.Color c) { throw null; }
    }
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.ContentAlignmentEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    public enum ContentAlignment
    {
        BottomCenter = 512,
        BottomLeft = 256,
        BottomRight = 1024,
        MiddleCenter = 32,
        MiddleLeft = 16,
        MiddleRight = 64,
        TopCenter = 2,
        TopLeft = 1,
        TopRight = 4,
    }
    [System.Runtime.InteropServices.ComVisibleAttribute(true)]
    public enum CopyPixelOperation
    {
        Blackness = 66,
        CaptureBlt = 1073741824,
        DestinationInvert = 5570569,
        MergeCopy = 12583114,
        MergePaint = 12255782,
        NoMirrorBitmap = -2147483648,
        NotSourceCopy = 3342344,
        NotSourceErase = 1114278,
        PatCopy = 15728673,
        PatInvert = 5898313,
        PatPaint = 16452105,
        SourceAnd = 8913094,
        SourceCopy = 13369376,
        SourceErase = 4457256,
        SourceInvert = 6684742,
        SourcePaint = 15597702,
        Whiteness = 16711778,
    }
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.FontEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.FontConverter))]
    [System.Runtime.InteropServices.ComVisibleAttribute(true)]
    [System.SerializableAttribute]
    public sealed partial class Font : System.MarshalByRefObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
    {
        public Font(System.Drawing.Font prototype, System.Drawing.FontStyle newStyle) { }
        public Font(System.Drawing.FontFamily family, float emSize) { }
        public Font(System.Drawing.FontFamily family, float emSize, System.Drawing.FontStyle style) { }
        public Font(System.Drawing.FontFamily family, float emSize, System.Drawing.FontStyle style, System.Drawing.GraphicsUnit unit) { }
        public Font(System.Drawing.FontFamily family, float emSize, System.Drawing.FontStyle style, System.Drawing.GraphicsUnit unit, byte gdiCharSet) { }
        public Font(System.Drawing.FontFamily family, float emSize, System.Drawing.FontStyle style, System.Drawing.GraphicsUnit unit, byte gdiCharSet, bool gdiVerticalFont) { }
        public Font(System.Drawing.FontFamily family, float emSize, System.Drawing.GraphicsUnit unit) { }
        public Font(string familyName, float emSize) { }
        public Font(string familyName, float emSize, System.Drawing.FontStyle style) { }
        public Font(string familyName, float emSize, System.Drawing.FontStyle style, System.Drawing.GraphicsUnit unit) { }
        public Font(string familyName, float emSize, System.Drawing.FontStyle style, System.Drawing.GraphicsUnit unit, byte gdiCharSet) { }
        public Font(string familyName, float emSize, System.Drawing.FontStyle style, System.Drawing.GraphicsUnit unit, byte gdiCharSet, bool gdiVerticalFont) { }
        public Font(string familyName, float emSize, System.Drawing.GraphicsUnit unit) { }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public bool Bold { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.FontFamily FontFamily { get { throw null; } }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public byte GdiCharSet { get { throw null; } }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public bool GdiVerticalFont { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Height { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsSystemFont { get { throw null; } }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public bool Italic { get { throw null; } }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        [System.ComponentModel.EditorAttribute("System.Drawing.Design.FontNameEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.FontConverter.FontNameConverter))]
        public string Name { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public string OriginalFontName { get { throw null; } }
        public float Size { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public float SizeInPoints { get { throw null; } }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public bool Strikeout { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.FontStyle Style { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public string SystemFontName { get { throw null; } }
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public bool Underline { get { throw null; } }
        [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.FontConverter.FontUnitConverter))]
        public System.Drawing.GraphicsUnit Unit { get { throw null; } }
        public object Clone() { throw null; }
        public void Dispose() { }
        public override bool Equals(object obj) { throw null; }
        ~Font() { }
        [System.MonoTODOAttribute("The hdc parameter has no direct equivalent in libgdiplus.")]
        public static System.Drawing.Font FromHdc(System.IntPtr hdc) { throw null; }
        public static System.Drawing.Font FromHfont(System.IntPtr hfont) { throw null; }
        public static System.Drawing.Font FromLogFont(object lf) { throw null; }
        [System.MonoTODOAttribute("The returned font may not have all it's properties initialized correctly.")]
        public static System.Drawing.Font FromLogFont(object lf, System.IntPtr hdc) { throw null; }
        public override int GetHashCode() { throw null; }
        public float GetHeight() { throw null; }
        public float GetHeight(System.Drawing.Graphics graphics) { throw null; }
        public float GetHeight(float dpi) { throw null; }
        void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
        public System.IntPtr ToHfont() { throw null; }
        public void ToLogFont(object logFont) { }
        public void ToLogFont(object logFont, System.Drawing.Graphics graphics) { }
        public override string ToString() { throw null; }
    }
    public partial class FontConverter : System.ComponentModel.TypeConverter
    {
        public FontConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
        ~FontConverter() { }
        public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
        public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public sealed partial class FontNameConverter : System.ComponentModel.TypeConverter, System.IDisposable
        {
            public FontNameConverter() { }
            public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
            public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
            public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
            public override bool GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
            public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
            void System.IDisposable.Dispose() { }
        }
        public partial class FontUnitConverter : System.ComponentModel.EnumConverter
        {
            public FontUnitConverter() : base (default(System.Type)) { }
            public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        }
    }
    public sealed partial class FontFamily : System.MarshalByRefObject, System.IDisposable
    {
        public FontFamily(System.Drawing.Text.GenericFontFamilies genericFamily) { }
        public FontFamily(string name) { }
        public FontFamily(string name, System.Drawing.Text.FontCollection fontCollection) { }
        public static System.Drawing.FontFamily[] Families { get { throw null; } }
        public static System.Drawing.FontFamily GenericMonospace { get { throw null; } }
        public static System.Drawing.FontFamily GenericSansSerif { get { throw null; } }
        public static System.Drawing.FontFamily GenericSerif { get { throw null; } }
        public string Name { get { throw null; } }
        public void Dispose() { }
        public override bool Equals(object obj) { throw null; }
        ~FontFamily() { }
        public int GetCellAscent(System.Drawing.FontStyle style) { throw null; }
        public int GetCellDescent(System.Drawing.FontStyle style) { throw null; }
        public int GetEmHeight(System.Drawing.FontStyle style) { throw null; }
        public static System.Drawing.FontFamily[] GetFamilies(System.Drawing.Graphics graphics) { throw null; }
        public override int GetHashCode() { throw null; }
        public int GetLineSpacing(System.Drawing.FontStyle style) { throw null; }
        [System.MonoLimitationAttribute("The language parameter is ignored. We always return the name using the default system language.")]
        public string GetName(int language) { throw null; }
        [System.MonoDocumentationNoteAttribute("When used with libgdiplus this method always return true (styles are created on demand).")]
        public bool IsStyleAvailable(System.Drawing.FontStyle style) { throw null; }
        public override string ToString() { throw null; }
    }
    [System.FlagsAttribute]
    public enum FontStyle
    {
        Bold = 1,
        Italic = 2,
        Regular = 0,
        Strikeout = 8,
        Underline = 4,
    }
    public sealed partial class Graphics : System.MarshalByRefObject, System.Drawing.IDeviceContext, System.IDisposable
    {
        internal Graphics() { }
        public System.Drawing.Region Clip { get { throw null; } set { } }
        public System.Drawing.RectangleF ClipBounds { get { throw null; } }
        public System.Drawing.Drawing2D.CompositingMode CompositingMode { get { throw null; } set { } }
        public System.Drawing.Drawing2D.CompositingQuality CompositingQuality { get { throw null; } set { } }
        public float DpiX { get { throw null; } }
        public float DpiY { get { throw null; } }
        public System.Drawing.Drawing2D.InterpolationMode InterpolationMode { get { throw null; } set { } }
        public bool IsClipEmpty { get { throw null; } }
        public bool IsVisibleClipEmpty { get { throw null; } }
        public float PageScale { get { throw null; } set { } }
        public System.Drawing.GraphicsUnit PageUnit { get { throw null; } set { } }
        [System.MonoTODOAttribute("This property does not do anything when used with libgdiplus.")]
        public System.Drawing.Drawing2D.PixelOffsetMode PixelOffsetMode { get { throw null; } set { } }
        public System.Drawing.Point RenderingOrigin { get { throw null; } set { } }
        public System.Drawing.Drawing2D.SmoothingMode SmoothingMode { get { throw null; } set { } }
        [System.MonoTODOAttribute("This property does not do anything when used with libgdiplus.")]
        public int TextContrast { get { throw null; } set { } }
        public System.Drawing.Text.TextRenderingHint TextRenderingHint { get { throw null; } set { } }
        public System.Drawing.Drawing2D.Matrix Transform { get { throw null; } set { } }
        public System.Drawing.RectangleF VisibleClipBounds { get { throw null; } }
        [System.MonoTODOAttribute("Metafiles, both WMF and EMF formats, aren't supported.")]
        public void AddMetafileComment(byte[] data) { }
        public System.Drawing.Drawing2D.GraphicsContainer BeginContainer() { throw null; }
        [System.MonoTODOAttribute("The rectangles and unit parameters aren't supported in libgdiplus")]
        public System.Drawing.Drawing2D.GraphicsContainer BeginContainer(System.Drawing.Rectangle dstrect, System.Drawing.Rectangle srcrect, System.Drawing.GraphicsUnit unit) { throw null; }
        [System.MonoTODOAttribute("The rectangles and unit parameters aren't supported in libgdiplus")]
        public System.Drawing.Drawing2D.GraphicsContainer BeginContainer(System.Drawing.RectangleF dstrect, System.Drawing.RectangleF srcrect, System.Drawing.GraphicsUnit unit) { throw null; }
        public void Clear(System.Drawing.Color color) { }
        [System.MonoLimitationAttribute("Works on Win32 and on X11 (but not on Cocoa and Quartz)")]
        public void CopyFromScreen(System.Drawing.Point upperLeftSource, System.Drawing.Point upperLeftDestination, System.Drawing.Size blockRegionSize) { }
        [System.MonoLimitationAttribute("Works on Win32 and (for CopyPixelOperation.SourceCopy only) on X11 but not on Cocoa and Quartz")]
        public void CopyFromScreen(System.Drawing.Point upperLeftSource, System.Drawing.Point upperLeftDestination, System.Drawing.Size blockRegionSize, System.Drawing.CopyPixelOperation copyPixelOperation) { }
        [System.MonoLimitationAttribute("Works on Win32 and on X11 (but not on Cocoa and Quartz)")]
        public void CopyFromScreen(int sourceX, int sourceY, int destinationX, int destinationY, System.Drawing.Size blockRegionSize) { }
        [System.MonoLimitationAttribute("Works on Win32 and (for CopyPixelOperation.SourceCopy only) on X11 but not on Cocoa and Quartz")]
        public void CopyFromScreen(int sourceX, int sourceY, int destinationX, int destinationY, System.Drawing.Size blockRegionSize, System.Drawing.CopyPixelOperation copyPixelOperation) { }
        public void Dispose() { }
        public void DrawArc(System.Drawing.Pen pen, System.Drawing.Rectangle rect, float startAngle, float sweepAngle) { }
        public void DrawArc(System.Drawing.Pen pen, System.Drawing.RectangleF rect, float startAngle, float sweepAngle) { }
        public void DrawArc(System.Drawing.Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle) { }
        public void DrawArc(System.Drawing.Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle) { }
        public void DrawBezier(System.Drawing.Pen pen, System.Drawing.Point pt1, System.Drawing.Point pt2, System.Drawing.Point pt3, System.Drawing.Point pt4) { }
        public void DrawBezier(System.Drawing.Pen pen, System.Drawing.PointF pt1, System.Drawing.PointF pt2, System.Drawing.PointF pt3, System.Drawing.PointF pt4) { }
        public void DrawBezier(System.Drawing.Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) { }
        public void DrawBeziers(System.Drawing.Pen pen, System.Drawing.PointF[] points) { }
        public void DrawBeziers(System.Drawing.Pen pen, System.Drawing.Point[] points) { }
        public void DrawClosedCurve(System.Drawing.Pen pen, System.Drawing.PointF[] points) { }
        public void DrawClosedCurve(System.Drawing.Pen pen, System.Drawing.PointF[] points, float tension, System.Drawing.Drawing2D.FillMode fillmode) { }
        public void DrawClosedCurve(System.Drawing.Pen pen, System.Drawing.Point[] points) { }
        public void DrawClosedCurve(System.Drawing.Pen pen, System.Drawing.Point[] points, float tension, System.Drawing.Drawing2D.FillMode fillmode) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.PointF[] points) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.PointF[] points, int offset, int numberOfSegments) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.PointF[] points, int offset, int numberOfSegments, float tension) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.PointF[] points, float tension) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.Point[] points) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.Point[] points, int offset, int numberOfSegments, float tension) { }
        public void DrawCurve(System.Drawing.Pen pen, System.Drawing.Point[] points, float tension) { }
        public void DrawEllipse(System.Drawing.Pen pen, System.Drawing.Rectangle rect) { }
        public void DrawEllipse(System.Drawing.Pen pen, System.Drawing.RectangleF rect) { }
        public void DrawEllipse(System.Drawing.Pen pen, int x, int y, int width, int height) { }
        public void DrawEllipse(System.Drawing.Pen pen, float x, float y, float width, float height) { }
        public void DrawIcon(System.Drawing.Icon icon, System.Drawing.Rectangle targetRect) { }
        public void DrawIcon(System.Drawing.Icon icon, int x, int y) { }
        public void DrawIconUnstretched(System.Drawing.Icon icon, System.Drawing.Rectangle targetRect) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Point point) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.PointF point) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.PointF[] destPoints) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr, System.Drawing.Graphics.DrawImageAbort callback) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr, System.Drawing.Graphics.DrawImageAbort callback, int callbackData) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Point[] destPoints) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr, System.Drawing.Graphics.DrawImageAbort callback) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr, System.Drawing.Graphics.DrawImageAbort callback, int callbackData) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle rect) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttr, System.Drawing.Graphics.DrawImageAbort callback) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttrs, System.Drawing.Graphics.DrawImageAbort callback, System.IntPtr callbackData) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttrs) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttrs, System.Drawing.Graphics.DrawImageAbort callback) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Imaging.ImageAttributes imageAttrs, System.Drawing.Graphics.DrawImageAbort callback, System.IntPtr callbackData) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.RectangleF rect) { }
        public void DrawImage(System.Drawing.Image image, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, int x, int y) { }
        public void DrawImage(System.Drawing.Image image, int x, int y, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, int x, int y, int width, int height) { }
        public void DrawImage(System.Drawing.Image image, float x, float y) { }
        public void DrawImage(System.Drawing.Image image, float x, float y, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit) { }
        public void DrawImage(System.Drawing.Image image, float x, float y, float width, float height) { }
        public void DrawImageUnscaled(System.Drawing.Image image, System.Drawing.Point point) { }
        public void DrawImageUnscaled(System.Drawing.Image image, System.Drawing.Rectangle rect) { }
        public void DrawImageUnscaled(System.Drawing.Image image, int x, int y) { }
        public void DrawImageUnscaled(System.Drawing.Image image, int x, int y, int width, int height) { }
        public void DrawImageUnscaledAndClipped(System.Drawing.Image image, System.Drawing.Rectangle rect) { }
        public void DrawLine(System.Drawing.Pen pen, System.Drawing.Point pt1, System.Drawing.Point pt2) { }
        public void DrawLine(System.Drawing.Pen pen, System.Drawing.PointF pt1, System.Drawing.PointF pt2) { }
        public void DrawLine(System.Drawing.Pen pen, int x1, int y1, int x2, int y2) { }
        public void DrawLine(System.Drawing.Pen pen, float x1, float y1, float x2, float y2) { }
        public void DrawLines(System.Drawing.Pen pen, System.Drawing.PointF[] points) { }
        public void DrawLines(System.Drawing.Pen pen, System.Drawing.Point[] points) { }
        public void DrawPath(System.Drawing.Pen pen, System.Drawing.Drawing2D.GraphicsPath path) { }
        public void DrawPie(System.Drawing.Pen pen, System.Drawing.Rectangle rect, float startAngle, float sweepAngle) { }
        public void DrawPie(System.Drawing.Pen pen, System.Drawing.RectangleF rect, float startAngle, float sweepAngle) { }
        public void DrawPie(System.Drawing.Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle) { }
        public void DrawPie(System.Drawing.Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle) { }
        public void DrawPolygon(System.Drawing.Pen pen, System.Drawing.PointF[] points) { }
        public void DrawPolygon(System.Drawing.Pen pen, System.Drawing.Point[] points) { }
        public void DrawRectangle(System.Drawing.Pen pen, System.Drawing.Rectangle rect) { }
        public void DrawRectangle(System.Drawing.Pen pen, int x, int y, int width, int height) { }
        public void DrawRectangle(System.Drawing.Pen pen, float x, float y, float width, float height) { }
        public void DrawRectangles(System.Drawing.Pen pen, System.Drawing.RectangleF[] rects) { }
        public void DrawRectangles(System.Drawing.Pen pen, System.Drawing.Rectangle[] rects) { }
        public void DrawString(string s, System.Drawing.Font font, System.Drawing.Brush brush, System.Drawing.PointF point) { }
        public void DrawString(string s, System.Drawing.Font font, System.Drawing.Brush brush, System.Drawing.PointF point, System.Drawing.StringFormat format) { }
        public void DrawString(string s, System.Drawing.Font font, System.Drawing.Brush brush, System.Drawing.RectangleF layoutRectangle) { }
        public void DrawString(string s, System.Drawing.Font font, System.Drawing.Brush brush, System.Drawing.RectangleF layoutRectangle, System.Drawing.StringFormat format) { }
        public void DrawString(string s, System.Drawing.Font font, System.Drawing.Brush brush, float x, float y) { }
        public void DrawString(string s, System.Drawing.Font font, System.Drawing.Brush brush, float x, float y, System.Drawing.StringFormat format) { }
        public void EndContainer(System.Drawing.Drawing2D.GraphicsContainer container) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData) { }
        [System.MonoTODOAttribute("Metafiles enumeration, for both WMF and EMF formats, isn't supported.")]
        public void EnumerateMetafile(System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, System.IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        public void ExcludeClip(System.Drawing.Rectangle rect) { }
        public void ExcludeClip(System.Drawing.Region region) { }
        public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.PointF[] points) { }
        public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillmode) { }
        public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillmode, float tension) { }
        public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.Point[] points) { }
        public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillmode) { }
        public void FillClosedCurve(System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillmode, float tension) { }
        public void FillEllipse(System.Drawing.Brush brush, System.Drawing.Rectangle rect) { }
        public void FillEllipse(System.Drawing.Brush brush, System.Drawing.RectangleF rect) { }
        public void FillEllipse(System.Drawing.Brush brush, int x, int y, int width, int height) { }
        public void FillEllipse(System.Drawing.Brush brush, float x, float y, float width, float height) { }
        public void FillPath(System.Drawing.Brush brush, System.Drawing.Drawing2D.GraphicsPath path) { }
        public void FillPie(System.Drawing.Brush brush, System.Drawing.Rectangle rect, float startAngle, float sweepAngle) { }
        public void FillPie(System.Drawing.Brush brush, int x, int y, int width, int height, int startAngle, int sweepAngle) { }
        public void FillPie(System.Drawing.Brush brush, float x, float y, float width, float height, float startAngle, float sweepAngle) { }
        public void FillPolygon(System.Drawing.Brush brush, System.Drawing.PointF[] points) { }
        public void FillPolygon(System.Drawing.Brush brush, System.Drawing.PointF[] points, System.Drawing.Drawing2D.FillMode fillMode) { }
        public void FillPolygon(System.Drawing.Brush brush, System.Drawing.Point[] points) { }
        public void FillPolygon(System.Drawing.Brush brush, System.Drawing.Point[] points, System.Drawing.Drawing2D.FillMode fillMode) { }
        public void FillRectangle(System.Drawing.Brush brush, System.Drawing.Rectangle rect) { }
        public void FillRectangle(System.Drawing.Brush brush, System.Drawing.RectangleF rect) { }
        public void FillRectangle(System.Drawing.Brush brush, int x, int y, int width, int height) { }
        public void FillRectangle(System.Drawing.Brush brush, float x, float y, float width, float height) { }
        public void FillRectangles(System.Drawing.Brush brush, System.Drawing.RectangleF[] rects) { }
        public void FillRectangles(System.Drawing.Brush brush, System.Drawing.Rectangle[] rects) { }
        public void FillRegion(System.Drawing.Brush brush, System.Drawing.Region region) { }
        ~Graphics() { }
        public void Flush() { }
        public void Flush(System.Drawing.Drawing2D.FlushIntention intention) { }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public static System.Drawing.Graphics FromHdc(System.IntPtr hdc) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        [System.MonoTODOAttribute]
        public static System.Drawing.Graphics FromHdc(System.IntPtr hdc, System.IntPtr hdevice) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public static System.Drawing.Graphics FromHdcInternal(System.IntPtr hdc) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public static System.Drawing.Graphics FromHwnd(System.IntPtr hwnd) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public static System.Drawing.Graphics FromHwndInternal(System.IntPtr hwnd) { throw null; }
        public static System.Drawing.Graphics FromImage(System.Drawing.Image image) { throw null; }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.MonoTODOAttribute]
        public object GetContextInfo() { throw null; }
        [System.MonoTODOAttribute]
        public static System.IntPtr GetHalftonePalette() { throw null; }
        public System.IntPtr GetHdc() { throw null; }
        public System.Drawing.Color GetNearestColor(System.Drawing.Color color) { throw null; }
        public void IntersectClip(System.Drawing.Rectangle rect) { }
        public void IntersectClip(System.Drawing.RectangleF rect) { }
        public void IntersectClip(System.Drawing.Region region) { }
        public bool IsVisible(System.Drawing.Point point) { throw null; }
        public bool IsVisible(System.Drawing.PointF point) { throw null; }
        public bool IsVisible(System.Drawing.Rectangle rect) { throw null; }
        public bool IsVisible(System.Drawing.RectangleF rect) { throw null; }
        public bool IsVisible(int x, int y) { throw null; }
        public bool IsVisible(int x, int y, int width, int height) { throw null; }
        public bool IsVisible(float x, float y) { throw null; }
        public bool IsVisible(float x, float y, float width, float height) { throw null; }
        public System.Drawing.Region[] MeasureCharacterRanges(string text, System.Drawing.Font font, System.Drawing.RectangleF layoutRect, System.Drawing.StringFormat stringFormat) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font, System.Drawing.PointF origin, System.Drawing.StringFormat stringFormat) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font, System.Drawing.SizeF layoutArea) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font, System.Drawing.SizeF layoutArea, System.Drawing.StringFormat stringFormat) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font, System.Drawing.SizeF layoutArea, System.Drawing.StringFormat stringFormat, out int charactersFitted, out int linesFilled) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font, int width) { throw null; }
        public System.Drawing.SizeF MeasureString(string text, System.Drawing.Font font, int width, System.Drawing.StringFormat format) { throw null; }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix) { }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ReleaseHdc() { }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
        public void ReleaseHdc(System.IntPtr hdc) { }
        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
        [System.MonoLimitationAttribute("Can only be used when hdc was provided by Graphics.GetHdc() method")]
        public void ReleaseHdcInternal(System.IntPtr hdc) { }
        public void ResetClip() { }
        public void ResetTransform() { }
        public void Restore(System.Drawing.Drawing2D.GraphicsState gstate) { }
        public void RotateTransform(float angle) { }
        public void RotateTransform(float angle, System.Drawing.Drawing2D.MatrixOrder order) { }
        public System.Drawing.Drawing2D.GraphicsState Save() { throw null; }
        public void ScaleTransform(float sx, float sy) { }
        public void ScaleTransform(float sx, float sy, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void SetClip(System.Drawing.Drawing2D.GraphicsPath path) { }
        public void SetClip(System.Drawing.Drawing2D.GraphicsPath path, System.Drawing.Drawing2D.CombineMode combineMode) { }
        public void SetClip(System.Drawing.Graphics g) { }
        public void SetClip(System.Drawing.Graphics g, System.Drawing.Drawing2D.CombineMode combineMode) { }
        public void SetClip(System.Drawing.Rectangle rect) { }
        public void SetClip(System.Drawing.Rectangle rect, System.Drawing.Drawing2D.CombineMode combineMode) { }
        public void SetClip(System.Drawing.RectangleF rect) { }
        public void SetClip(System.Drawing.RectangleF rect, System.Drawing.Drawing2D.CombineMode combineMode) { }
        public void SetClip(System.Drawing.Region region, System.Drawing.Drawing2D.CombineMode combineMode) { }
        public void TransformPoints(System.Drawing.Drawing2D.CoordinateSpace destSpace, System.Drawing.Drawing2D.CoordinateSpace srcSpace, System.Drawing.PointF[] pts) { }
        public void TransformPoints(System.Drawing.Drawing2D.CoordinateSpace destSpace, System.Drawing.Drawing2D.CoordinateSpace srcSpace, System.Drawing.Point[] pts) { }
        public void TranslateClip(int dx, int dy) { }
        public void TranslateClip(float dx, float dy) { }
        public void TranslateTransform(float dx, float dy) { }
        public void TranslateTransform(float dx, float dy, System.Drawing.Drawing2D.MatrixOrder order) { }
        public delegate bool DrawImageAbort(System.IntPtr callbackdata);
        public delegate bool EnumerateMetafileProc(System.Drawing.Imaging.EmfPlusRecordType recordType, int flags, int dataSize, System.IntPtr data, System.Drawing.Imaging.PlayRecordCallback callbackData);
    }
    public enum GraphicsUnit
    {
        Display = 1,
        Document = 5,
        Inch = 4,
        Millimeter = 6,
        Pixel = 2,
        Point = 3,
        World = 0,
    }
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.IconEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.IconConverter))]
    [System.SerializableAttribute]
    public sealed partial class Icon : System.MarshalByRefObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
    {
        public Icon(System.Drawing.Icon original, System.Drawing.Size size) { }
        public Icon(System.Drawing.Icon original, int width, int height) { }
        public Icon(System.IO.Stream stream) { }
        public Icon(System.IO.Stream stream, System.Drawing.Size size) { }
        public Icon(System.IO.Stream stream, int width, int height) { }
        public Icon(string fileName) { }
        public Icon(string fileName, System.Drawing.Size size) { }
        public Icon(string fileName, int width, int height) { }
        public Icon(System.Type type, string resource) { }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.IntPtr Handle { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Height { get { throw null; } }
        public System.Drawing.Size Size { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Width { get { throw null; } }
        public object Clone() { throw null; }
        public void Dispose() { }
        [System.MonoLimitationAttribute("The same icon, SystemIcons.WinLogo, is returned for all file types.")]
        public static System.Drawing.Icon ExtractAssociatedIcon(string filePath) { throw null; }
        ~Icon() { }
        public static System.Drawing.Icon FromHandle(System.IntPtr handle) { throw null; }
        public void Save(System.IO.Stream outputStream) { }
        void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
        public System.Drawing.Bitmap ToBitmap() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class IconConverter : System.ComponentModel.ExpandableObjectConverter
    {
        public IconConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
    }
    public partial interface IDeviceContext : System.IDisposable
    {
        System.IntPtr GetHdc();
        void ReleaseHdc();
    }
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.ImageEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    [System.ComponentModel.ImmutableObjectAttribute(true)]
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.ImageConverter))]
    [System.Runtime.InteropServices.ComVisibleAttribute(true)]
    [System.SerializableAttribute]
    public abstract partial class Image : System.MarshalByRefObject, System.ICloneable, System.IDisposable, System.Runtime.Serialization.ISerializable
    {
        internal Image() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Flags { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Guid[] FrameDimensionsList { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public int Height { get { throw null; } }
        public float HorizontalResolution { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.Imaging.ColorPalette Palette { get { throw null; } set { } }
        public System.Drawing.SizeF PhysicalDimension { get { throw null; } }
        public System.Drawing.Imaging.PixelFormat PixelFormat { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int[] PropertyIdList { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.Imaging.PropertyItem[] PropertyItems { get { throw null; } }
        public System.Drawing.Imaging.ImageFormat RawFormat { get { throw null; } }
        public System.Drawing.Size Size { get { throw null; } }
        [System.ComponentModel.BindableAttribute(true)]
        [System.ComponentModel.DefaultValueAttribute(null)]
        [System.ComponentModel.LocalizableAttribute(false)]
        [System.ComponentModel.TypeConverterAttribute(typeof(System.ComponentModel.StringConverter))]
        public object Tag { get { throw null; } set { } }
        public float VerticalResolution { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DefaultValueAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public int Width { get { throw null; } }
        public object Clone() { throw null; }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        ~Image() { }
        public static System.Drawing.Image FromFile(string filename) { throw null; }
        public static System.Drawing.Image FromFile(string filename, bool useEmbeddedColorManagement) { throw null; }
        public static System.Drawing.Bitmap FromHbitmap(System.IntPtr hbitmap) { throw null; }
        public static System.Drawing.Bitmap FromHbitmap(System.IntPtr hbitmap, System.IntPtr hpalette) { throw null; }
        public static System.Drawing.Image FromStream(System.IO.Stream stream) { throw null; }
        [System.MonoLimitationAttribute("useEmbeddedColorManagement  isn't supported.")]
        public static System.Drawing.Image FromStream(System.IO.Stream stream, bool useEmbeddedColorManagement) { throw null; }
        [System.MonoLimitationAttribute("useEmbeddedColorManagement  and validateImageData aren't supported.")]
        public static System.Drawing.Image FromStream(System.IO.Stream stream, bool useEmbeddedColorManagement, bool validateImageData) { throw null; }
        public System.Drawing.RectangleF GetBounds(ref System.Drawing.GraphicsUnit pageUnit) { throw null; }
        public System.Drawing.Imaging.EncoderParameters GetEncoderParameterList(System.Guid encoder) { throw null; }
        public int GetFrameCount(System.Drawing.Imaging.FrameDimension dimension) { throw null; }
        public static int GetPixelFormatSize(System.Drawing.Imaging.PixelFormat pixfmt) { throw null; }
        public System.Drawing.Imaging.PropertyItem GetPropertyItem(int propid) { throw null; }
        public System.Drawing.Image GetThumbnailImage(int thumbWidth, int thumbHeight, System.Drawing.Image.GetThumbnailImageAbort callback, System.IntPtr callbackData) { throw null; }
        public static bool IsAlphaPixelFormat(System.Drawing.Imaging.PixelFormat pixfmt) { throw null; }
        public static bool IsCanonicalPixelFormat(System.Drawing.Imaging.PixelFormat pixfmt) { throw null; }
        public static bool IsExtendedPixelFormat(System.Drawing.Imaging.PixelFormat pixfmt) { throw null; }
        public void RemovePropertyItem(int propid) { }
        public void RotateFlip(System.Drawing.RotateFlipType rotateFlipType) { }
        public void Save(System.IO.Stream stream, System.Drawing.Imaging.ImageCodecInfo encoder, System.Drawing.Imaging.EncoderParameters encoderParams) { }
        public void Save(System.IO.Stream stream, System.Drawing.Imaging.ImageFormat format) { }
        public void Save(string filename) { }
        public void Save(string filename, System.Drawing.Imaging.ImageCodecInfo encoder, System.Drawing.Imaging.EncoderParameters encoderParams) { }
        public void Save(string filename, System.Drawing.Imaging.ImageFormat format) { }
        public void SaveAdd(System.Drawing.Image image, System.Drawing.Imaging.EncoderParameters encoderParams) { }
        public void SaveAdd(System.Drawing.Imaging.EncoderParameters encoderParams) { }
        public int SelectActiveFrame(System.Drawing.Imaging.FrameDimension dimension, int frameIndex) { throw null; }
        public void SetPropertyItem(System.Drawing.Imaging.PropertyItem propitem) { }
        void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo si, System.Runtime.Serialization.StreamingContext context) { }
        public delegate bool GetThumbnailImageAbort();
    }
    public sealed partial class ImageAnimator
    {
        internal ImageAnimator() { }
        public static void Animate(System.Drawing.Image image, System.EventHandler onFrameChangedHandler) { }
        public static bool CanAnimate(System.Drawing.Image image) { throw null; }
        public static void StopAnimate(System.Drawing.Image image, System.EventHandler onFrameChangedHandler) { }
        public static void UpdateFrames() { }
        public static void UpdateFrames(System.Drawing.Image image) { }
    }
    public partial class ImageConverter : System.ComponentModel.TypeConverter
    {
        public ImageConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
        public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    public partial class ImageFormatConverter : System.ComponentModel.TypeConverter
    {
        public ImageFormatConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override System.ComponentModel.TypeConverter.StandardValuesCollection GetStandardValues(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    public enum KnownColor
    {
        ActiveBorder = 1,
        ActiveCaption = 2,
        ActiveCaptionText = 3,
        AliceBlue = 28,
        AntiqueWhite = 29,
        AppWorkspace = 4,
        Aqua = 30,
        Aquamarine = 31,
        Azure = 32,
        Beige = 33,
        Bisque = 34,
        Black = 35,
        BlanchedAlmond = 36,
        Blue = 37,
        BlueViolet = 38,
        Brown = 39,
        BurlyWood = 40,
        ButtonFace = 168,
        ButtonHighlight = 169,
        ButtonShadow = 170,
        CadetBlue = 41,
        Chartreuse = 42,
        Chocolate = 43,
        Control = 5,
        ControlDark = 6,
        ControlDarkDark = 7,
        ControlLight = 8,
        ControlLightLight = 9,
        ControlText = 10,
        Coral = 44,
        CornflowerBlue = 45,
        Cornsilk = 46,
        Crimson = 47,
        Cyan = 48,
        DarkBlue = 49,
        DarkCyan = 50,
        DarkGoldenrod = 51,
        DarkGray = 52,
        DarkGreen = 53,
        DarkKhaki = 54,
        DarkMagenta = 55,
        DarkOliveGreen = 56,
        DarkOrange = 57,
        DarkOrchid = 58,
        DarkRed = 59,
        DarkSalmon = 60,
        DarkSeaGreen = 61,
        DarkSlateBlue = 62,
        DarkSlateGray = 63,
        DarkTurquoise = 64,
        DarkViolet = 65,
        DeepPink = 66,
        DeepSkyBlue = 67,
        Desktop = 11,
        DimGray = 68,
        DodgerBlue = 69,
        Firebrick = 70,
        FloralWhite = 71,
        ForestGreen = 72,
        Fuchsia = 73,
        Gainsboro = 74,
        GhostWhite = 75,
        Gold = 76,
        Goldenrod = 77,
        GradientActiveCaption = 171,
        GradientInactiveCaption = 172,
        Gray = 78,
        GrayText = 12,
        Green = 79,
        GreenYellow = 80,
        Highlight = 13,
        HighlightText = 14,
        Honeydew = 81,
        HotPink = 82,
        HotTrack = 15,
        InactiveBorder = 16,
        InactiveCaption = 17,
        InactiveCaptionText = 18,
        IndianRed = 83,
        Indigo = 84,
        Info = 19,
        InfoText = 20,
        Ivory = 85,
        Khaki = 86,
        Lavender = 87,
        LavenderBlush = 88,
        LawnGreen = 89,
        LemonChiffon = 90,
        LightBlue = 91,
        LightCoral = 92,
        LightCyan = 93,
        LightGoldenrodYellow = 94,
        LightGray = 95,
        LightGreen = 96,
        LightPink = 97,
        LightSalmon = 98,
        LightSeaGreen = 99,
        LightSkyBlue = 100,
        LightSlateGray = 101,
        LightSteelBlue = 102,
        LightYellow = 103,
        Lime = 104,
        LimeGreen = 105,
        Linen = 106,
        Magenta = 107,
        Maroon = 108,
        MediumAquamarine = 109,
        MediumBlue = 110,
        MediumOrchid = 111,
        MediumPurple = 112,
        MediumSeaGreen = 113,
        MediumSlateBlue = 114,
        MediumSpringGreen = 115,
        MediumTurquoise = 116,
        MediumVioletRed = 117,
        Menu = 21,
        MenuBar = 173,
        MenuHighlight = 174,
        MenuText = 22,
        MidnightBlue = 118,
        MintCream = 119,
        MistyRose = 120,
        Moccasin = 121,
        NavajoWhite = 122,
        Navy = 123,
        OldLace = 124,
        Olive = 125,
        OliveDrab = 126,
        Orange = 127,
        OrangeRed = 128,
        Orchid = 129,
        PaleGoldenrod = 130,
        PaleGreen = 131,
        PaleTurquoise = 132,
        PaleVioletRed = 133,
        PapayaWhip = 134,
        PeachPuff = 135,
        Peru = 136,
        Pink = 137,
        Plum = 138,
        PowderBlue = 139,
        Purple = 140,
        Red = 141,
        RosyBrown = 142,
        RoyalBlue = 143,
        SaddleBrown = 144,
        Salmon = 145,
        SandyBrown = 146,
        ScrollBar = 23,
        SeaGreen = 147,
        SeaShell = 148,
        Sienna = 149,
        Silver = 150,
        SkyBlue = 151,
        SlateBlue = 152,
        SlateGray = 153,
        Snow = 154,
        SpringGreen = 155,
        SteelBlue = 156,
        Tan = 157,
        Teal = 158,
        Thistle = 159,
        Tomato = 160,
        Transparent = 27,
        Turquoise = 161,
        Violet = 162,
        Wheat = 163,
        White = 164,
        WhiteSmoke = 165,
        Window = 24,
        WindowFrame = 25,
        WindowText = 26,
        Yellow = 166,
        YellowGreen = 167,
    }
    public sealed partial class Pen : System.MarshalByRefObject, System.ICloneable, System.IDisposable
    {
        public Pen(System.Drawing.Brush brush) { }
        public Pen(System.Drawing.Brush brush, float width) { }
        public Pen(System.Drawing.Color color) { }
        public Pen(System.Drawing.Color color, float width) { }
        [System.MonoLimitationAttribute("Libgdiplus doesn't use this property for rendering")]
        public System.Drawing.Drawing2D.PenAlignment Alignment { get { throw null; } set { } }
        public System.Drawing.Brush Brush { get { throw null; } set { } }
        public System.Drawing.Color Color { get { throw null; } set { } }
        public float[] CompoundArray { get { throw null; } set { } }
        public System.Drawing.Drawing2D.CustomLineCap CustomEndCap { get { throw null; } set { } }
        public System.Drawing.Drawing2D.CustomLineCap CustomStartCap { get { throw null; } set { } }
        public System.Drawing.Drawing2D.DashCap DashCap { get { throw null; } set { } }
        public float DashOffset { get { throw null; } set { } }
        public float[] DashPattern { get { throw null; } set { } }
        public System.Drawing.Drawing2D.DashStyle DashStyle { get { throw null; } set { } }
        public System.Drawing.Drawing2D.LineCap EndCap { get { throw null; } set { } }
        public System.Drawing.Drawing2D.LineJoin LineJoin { get { throw null; } set { } }
        public float MiterLimit { get { throw null; } set { } }
        public System.Drawing.Drawing2D.PenType PenType { get { throw null; } }
        public System.Drawing.Drawing2D.LineCap StartCap { get { throw null; } set { } }
        public System.Drawing.Drawing2D.Matrix Transform { get { throw null; } set { } }
        public float Width { get { throw null; } set { } }
        public object Clone() { throw null; }
        public void Dispose() { }
        ~Pen() { }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix) { }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ResetTransform() { }
        public void RotateTransform(float angle) { }
        public void RotateTransform(float angle, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ScaleTransform(float sx, float sy) { }
        public void ScaleTransform(float sx, float sy, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void SetLineCap(System.Drawing.Drawing2D.LineCap startCap, System.Drawing.Drawing2D.LineCap endCap, System.Drawing.Drawing2D.DashCap dashCap) { }
        public void TranslateTransform(float dx, float dy) { }
        public void TranslateTransform(float dx, float dy, System.Drawing.Drawing2D.MatrixOrder order) { }
    }
    public sealed partial class Pens
    {
        internal Pens() { }
        public static System.Drawing.Pen AliceBlue { get { throw null; } }
        public static System.Drawing.Pen AntiqueWhite { get { throw null; } }
        public static System.Drawing.Pen Aqua { get { throw null; } }
        public static System.Drawing.Pen Aquamarine { get { throw null; } }
        public static System.Drawing.Pen Azure { get { throw null; } }
        public static System.Drawing.Pen Beige { get { throw null; } }
        public static System.Drawing.Pen Bisque { get { throw null; } }
        public static System.Drawing.Pen Black { get { throw null; } }
        public static System.Drawing.Pen BlanchedAlmond { get { throw null; } }
        public static System.Drawing.Pen Blue { get { throw null; } }
        public static System.Drawing.Pen BlueViolet { get { throw null; } }
        public static System.Drawing.Pen Brown { get { throw null; } }
        public static System.Drawing.Pen BurlyWood { get { throw null; } }
        public static System.Drawing.Pen CadetBlue { get { throw null; } }
        public static System.Drawing.Pen Chartreuse { get { throw null; } }
        public static System.Drawing.Pen Chocolate { get { throw null; } }
        public static System.Drawing.Pen Coral { get { throw null; } }
        public static System.Drawing.Pen CornflowerBlue { get { throw null; } }
        public static System.Drawing.Pen Cornsilk { get { throw null; } }
        public static System.Drawing.Pen Crimson { get { throw null; } }
        public static System.Drawing.Pen Cyan { get { throw null; } }
        public static System.Drawing.Pen DarkBlue { get { throw null; } }
        public static System.Drawing.Pen DarkCyan { get { throw null; } }
        public static System.Drawing.Pen DarkGoldenrod { get { throw null; } }
        public static System.Drawing.Pen DarkGray { get { throw null; } }
        public static System.Drawing.Pen DarkGreen { get { throw null; } }
        public static System.Drawing.Pen DarkKhaki { get { throw null; } }
        public static System.Drawing.Pen DarkMagenta { get { throw null; } }
        public static System.Drawing.Pen DarkOliveGreen { get { throw null; } }
        public static System.Drawing.Pen DarkOrange { get { throw null; } }
        public static System.Drawing.Pen DarkOrchid { get { throw null; } }
        public static System.Drawing.Pen DarkRed { get { throw null; } }
        public static System.Drawing.Pen DarkSalmon { get { throw null; } }
        public static System.Drawing.Pen DarkSeaGreen { get { throw null; } }
        public static System.Drawing.Pen DarkSlateBlue { get { throw null; } }
        public static System.Drawing.Pen DarkSlateGray { get { throw null; } }
        public static System.Drawing.Pen DarkTurquoise { get { throw null; } }
        public static System.Drawing.Pen DarkViolet { get { throw null; } }
        public static System.Drawing.Pen DeepPink { get { throw null; } }
        public static System.Drawing.Pen DeepSkyBlue { get { throw null; } }
        public static System.Drawing.Pen DimGray { get { throw null; } }
        public static System.Drawing.Pen DodgerBlue { get { throw null; } }
        public static System.Drawing.Pen Firebrick { get { throw null; } }
        public static System.Drawing.Pen FloralWhite { get { throw null; } }
        public static System.Drawing.Pen ForestGreen { get { throw null; } }
        public static System.Drawing.Pen Fuchsia { get { throw null; } }
        public static System.Drawing.Pen Gainsboro { get { throw null; } }
        public static System.Drawing.Pen GhostWhite { get { throw null; } }
        public static System.Drawing.Pen Gold { get { throw null; } }
        public static System.Drawing.Pen Goldenrod { get { throw null; } }
        public static System.Drawing.Pen Gray { get { throw null; } }
        public static System.Drawing.Pen Green { get { throw null; } }
        public static System.Drawing.Pen GreenYellow { get { throw null; } }
        public static System.Drawing.Pen Honeydew { get { throw null; } }
        public static System.Drawing.Pen HotPink { get { throw null; } }
        public static System.Drawing.Pen IndianRed { get { throw null; } }
        public static System.Drawing.Pen Indigo { get { throw null; } }
        public static System.Drawing.Pen Ivory { get { throw null; } }
        public static System.Drawing.Pen Khaki { get { throw null; } }
        public static System.Drawing.Pen Lavender { get { throw null; } }
        public static System.Drawing.Pen LavenderBlush { get { throw null; } }
        public static System.Drawing.Pen LawnGreen { get { throw null; } }
        public static System.Drawing.Pen LemonChiffon { get { throw null; } }
        public static System.Drawing.Pen LightBlue { get { throw null; } }
        public static System.Drawing.Pen LightCoral { get { throw null; } }
        public static System.Drawing.Pen LightCyan { get { throw null; } }
        public static System.Drawing.Pen LightGoldenrodYellow { get { throw null; } }
        public static System.Drawing.Pen LightGray { get { throw null; } }
        public static System.Drawing.Pen LightGreen { get { throw null; } }
        public static System.Drawing.Pen LightPink { get { throw null; } }
        public static System.Drawing.Pen LightSalmon { get { throw null; } }
        public static System.Drawing.Pen LightSeaGreen { get { throw null; } }
        public static System.Drawing.Pen LightSkyBlue { get { throw null; } }
        public static System.Drawing.Pen LightSlateGray { get { throw null; } }
        public static System.Drawing.Pen LightSteelBlue { get { throw null; } }
        public static System.Drawing.Pen LightYellow { get { throw null; } }
        public static System.Drawing.Pen Lime { get { throw null; } }
        public static System.Drawing.Pen LimeGreen { get { throw null; } }
        public static System.Drawing.Pen Linen { get { throw null; } }
        public static System.Drawing.Pen Magenta { get { throw null; } }
        public static System.Drawing.Pen Maroon { get { throw null; } }
        public static System.Drawing.Pen MediumAquamarine { get { throw null; } }
        public static System.Drawing.Pen MediumBlue { get { throw null; } }
        public static System.Drawing.Pen MediumOrchid { get { throw null; } }
        public static System.Drawing.Pen MediumPurple { get { throw null; } }
        public static System.Drawing.Pen MediumSeaGreen { get { throw null; } }
        public static System.Drawing.Pen MediumSlateBlue { get { throw null; } }
        public static System.Drawing.Pen MediumSpringGreen { get { throw null; } }
        public static System.Drawing.Pen MediumTurquoise { get { throw null; } }
        public static System.Drawing.Pen MediumVioletRed { get { throw null; } }
        public static System.Drawing.Pen MidnightBlue { get { throw null; } }
        public static System.Drawing.Pen MintCream { get { throw null; } }
        public static System.Drawing.Pen MistyRose { get { throw null; } }
        public static System.Drawing.Pen Moccasin { get { throw null; } }
        public static System.Drawing.Pen NavajoWhite { get { throw null; } }
        public static System.Drawing.Pen Navy { get { throw null; } }
        public static System.Drawing.Pen OldLace { get { throw null; } }
        public static System.Drawing.Pen Olive { get { throw null; } }
        public static System.Drawing.Pen OliveDrab { get { throw null; } }
        public static System.Drawing.Pen Orange { get { throw null; } }
        public static System.Drawing.Pen OrangeRed { get { throw null; } }
        public static System.Drawing.Pen Orchid { get { throw null; } }
        public static System.Drawing.Pen PaleGoldenrod { get { throw null; } }
        public static System.Drawing.Pen PaleGreen { get { throw null; } }
        public static System.Drawing.Pen PaleTurquoise { get { throw null; } }
        public static System.Drawing.Pen PaleVioletRed { get { throw null; } }
        public static System.Drawing.Pen PapayaWhip { get { throw null; } }
        public static System.Drawing.Pen PeachPuff { get { throw null; } }
        public static System.Drawing.Pen Peru { get { throw null; } }
        public static System.Drawing.Pen Pink { get { throw null; } }
        public static System.Drawing.Pen Plum { get { throw null; } }
        public static System.Drawing.Pen PowderBlue { get { throw null; } }
        public static System.Drawing.Pen Purple { get { throw null; } }
        public static System.Drawing.Pen Red { get { throw null; } }
        public static System.Drawing.Pen RosyBrown { get { throw null; } }
        public static System.Drawing.Pen RoyalBlue { get { throw null; } }
        public static System.Drawing.Pen SaddleBrown { get { throw null; } }
        public static System.Drawing.Pen Salmon { get { throw null; } }
        public static System.Drawing.Pen SandyBrown { get { throw null; } }
        public static System.Drawing.Pen SeaGreen { get { throw null; } }
        public static System.Drawing.Pen SeaShell { get { throw null; } }
        public static System.Drawing.Pen Sienna { get { throw null; } }
        public static System.Drawing.Pen Silver { get { throw null; } }
        public static System.Drawing.Pen SkyBlue { get { throw null; } }
        public static System.Drawing.Pen SlateBlue { get { throw null; } }
        public static System.Drawing.Pen SlateGray { get { throw null; } }
        public static System.Drawing.Pen Snow { get { throw null; } }
        public static System.Drawing.Pen SpringGreen { get { throw null; } }
        public static System.Drawing.Pen SteelBlue { get { throw null; } }
        public static System.Drawing.Pen Tan { get { throw null; } }
        public static System.Drawing.Pen Teal { get { throw null; } }
        public static System.Drawing.Pen Thistle { get { throw null; } }
        public static System.Drawing.Pen Tomato { get { throw null; } }
        public static System.Drawing.Pen Transparent { get { throw null; } }
        public static System.Drawing.Pen Turquoise { get { throw null; } }
        public static System.Drawing.Pen Violet { get { throw null; } }
        public static System.Drawing.Pen Wheat { get { throw null; } }
        public static System.Drawing.Pen White { get { throw null; } }
        public static System.Drawing.Pen WhiteSmoke { get { throw null; } }
        public static System.Drawing.Pen Yellow { get { throw null; } }
        public static System.Drawing.Pen YellowGreen { get { throw null; } }
    }
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.PointConverter))]
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct Point : System.IEquatable<System.Drawing.Point>
    {
        private int _dummyPrimitive;
        public static readonly System.Drawing.Point Empty;
        public Point(System.Drawing.Size sz) { throw null; }
        public Point(int dw) { throw null; }
        public Point(int x, int y) { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsEmpty { get { throw null; } }
        public int X { get { throw null; } set { } }
        public int Y { get { throw null; } set { } }
        public static System.Drawing.Point Add(System.Drawing.Point pt, System.Drawing.Size sz) { throw null; }
        public static System.Drawing.Point Ceiling(System.Drawing.PointF value) { throw null; }
        public bool Equals(System.Drawing.Point other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public void Offset(System.Drawing.Point p) { }
        public void Offset(int dx, int dy) { }
        public static System.Drawing.Point operator +(System.Drawing.Point pt, System.Drawing.Size sz) { throw null; }
        public static bool operator ==(System.Drawing.Point left, System.Drawing.Point right) { throw null; }
        public static explicit operator System.Drawing.Size (System.Drawing.Point p) { throw null; }
        public static implicit operator System.Drawing.PointF (System.Drawing.Point p) { throw null; }
        public static bool operator !=(System.Drawing.Point left, System.Drawing.Point right) { throw null; }
        public static System.Drawing.Point operator -(System.Drawing.Point pt, System.Drawing.Size sz) { throw null; }
        public static System.Drawing.Point Round(System.Drawing.PointF value) { throw null; }
        public static System.Drawing.Point Subtract(System.Drawing.Point pt, System.Drawing.Size sz) { throw null; }
        public override string ToString() { throw null; }
        public static System.Drawing.Point Truncate(System.Drawing.PointF value) { throw null; }
    }
    public partial class PointConverter : System.ComponentModel.TypeConverter
    {
        public PointConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
        public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
        public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct PointF : System.IEquatable<System.Drawing.PointF>
    {
        private int _dummyPrimitive;
        public static readonly System.Drawing.PointF Empty;
        public PointF(float x, float y) { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsEmpty { get { throw null; } }
        public float X { get { throw null; } set { } }
        public float Y { get { throw null; } set { } }
        public static System.Drawing.PointF Add(System.Drawing.PointF pt, System.Drawing.Size sz) { throw null; }
        public static System.Drawing.PointF Add(System.Drawing.PointF pt, System.Drawing.SizeF sz) { throw null; }
        public bool Equals(System.Drawing.PointF other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static System.Drawing.PointF operator +(System.Drawing.PointF pt, System.Drawing.Size sz) { throw null; }
        public static System.Drawing.PointF operator +(System.Drawing.PointF pt, System.Drawing.SizeF sz) { throw null; }
        public static bool operator ==(System.Drawing.PointF left, System.Drawing.PointF right) { throw null; }
        public static bool operator !=(System.Drawing.PointF left, System.Drawing.PointF right) { throw null; }
        public static System.Drawing.PointF operator -(System.Drawing.PointF pt, System.Drawing.Size sz) { throw null; }
        public static System.Drawing.PointF operator -(System.Drawing.PointF pt, System.Drawing.SizeF sz) { throw null; }
        public static System.Drawing.PointF Subtract(System.Drawing.PointF pt, System.Drawing.Size sz) { throw null; }
        public static System.Drawing.PointF Subtract(System.Drawing.PointF pt, System.Drawing.SizeF sz) { throw null; }
        public override string ToString() { throw null; }
    }
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.RectangleConverter))]
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct Rectangle : System.IEquatable<System.Drawing.Rectangle>
    {
        private int _dummyPrimitive;
        public static readonly System.Drawing.Rectangle Empty;
        public Rectangle(System.Drawing.Point location, System.Drawing.Size size) { throw null; }
        public Rectangle(int x, int y, int width, int height) { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Bottom { get { throw null; } }
        public int Height { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsEmpty { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Left { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.Point Location { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Right { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.Size Size { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public int Top { get { throw null; } }
        public int Width { get { throw null; } set { } }
        public int X { get { throw null; } set { } }
        public int Y { get { throw null; } set { } }
        public static System.Drawing.Rectangle Ceiling(System.Drawing.RectangleF value) { throw null; }
        public bool Contains(System.Drawing.Point pt) { throw null; }
        public bool Contains(System.Drawing.Rectangle rect) { throw null; }
        public bool Contains(int x, int y) { throw null; }
        public bool Equals(System.Drawing.Rectangle other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public static System.Drawing.Rectangle FromLTRB(int left, int top, int right, int bottom) { throw null; }
        public override int GetHashCode() { throw null; }
        public static System.Drawing.Rectangle Inflate(System.Drawing.Rectangle rect, int x, int y) { throw null; }
        public void Inflate(System.Drawing.Size size) { }
        public void Inflate(int width, int height) { }
        public void Intersect(System.Drawing.Rectangle rect) { }
        public static System.Drawing.Rectangle Intersect(System.Drawing.Rectangle a, System.Drawing.Rectangle b) { throw null; }
        public bool IntersectsWith(System.Drawing.Rectangle rect) { throw null; }
        public void Offset(System.Drawing.Point pos) { }
        public void Offset(int x, int y) { }
        public static bool operator ==(System.Drawing.Rectangle left, System.Drawing.Rectangle right) { throw null; }
        public static bool operator !=(System.Drawing.Rectangle left, System.Drawing.Rectangle right) { throw null; }
        public static System.Drawing.Rectangle Round(System.Drawing.RectangleF value) { throw null; }
        public override string ToString() { throw null; }
        public static System.Drawing.Rectangle Truncate(System.Drawing.RectangleF value) { throw null; }
        public static System.Drawing.Rectangle Union(System.Drawing.Rectangle a, System.Drawing.Rectangle b) { throw null; }
    }
    public partial class RectangleConverter : System.ComponentModel.TypeConverter
    {
        public RectangleConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
        public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
        public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct RectangleF : System.IEquatable<System.Drawing.RectangleF>
    {
        private int _dummyPrimitive;
        public static readonly System.Drawing.RectangleF Empty;
        public RectangleF(System.Drawing.PointF location, System.Drawing.SizeF size) { throw null; }
        public RectangleF(float x, float y, float width, float height) { throw null; }
        [System.ComponentModel.BrowsableAttribute(false)]
        public float Bottom { get { throw null; } }
        public float Height { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsEmpty { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public float Left { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.PointF Location { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public float Right { get { throw null; } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public System.Drawing.SizeF Size { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public float Top { get { throw null; } }
        public float Width { get { throw null; } set { } }
        public float X { get { throw null; } set { } }
        public float Y { get { throw null; } set { } }
        public bool Contains(System.Drawing.PointF pt) { throw null; }
        public bool Contains(System.Drawing.RectangleF rect) { throw null; }
        public bool Contains(float x, float y) { throw null; }
        public bool Equals(System.Drawing.RectangleF other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public static System.Drawing.RectangleF FromLTRB(float left, float top, float right, float bottom) { throw null; }
        public override int GetHashCode() { throw null; }
        public static System.Drawing.RectangleF Inflate(System.Drawing.RectangleF rect, float x, float y) { throw null; }
        public void Inflate(System.Drawing.SizeF size) { }
        public void Inflate(float x, float y) { }
        public void Intersect(System.Drawing.RectangleF rect) { }
        public static System.Drawing.RectangleF Intersect(System.Drawing.RectangleF a, System.Drawing.RectangleF b) { throw null; }
        public bool IntersectsWith(System.Drawing.RectangleF rect) { throw null; }
        public void Offset(System.Drawing.PointF pos) { }
        public void Offset(float x, float y) { }
        public static bool operator ==(System.Drawing.RectangleF left, System.Drawing.RectangleF right) { throw null; }
        public static implicit operator System.Drawing.RectangleF (System.Drawing.Rectangle r) { throw null; }
        public static bool operator !=(System.Drawing.RectangleF left, System.Drawing.RectangleF right) { throw null; }
        public override string ToString() { throw null; }
        public static System.Drawing.RectangleF Union(System.Drawing.RectangleF a, System.Drawing.RectangleF b) { throw null; }
    }
    public sealed partial class Region : System.MarshalByRefObject, System.IDisposable
    {
        public Region() { }
        public Region(System.Drawing.Drawing2D.GraphicsPath path) { }
        public Region(System.Drawing.Drawing2D.RegionData rgnData) { }
        public Region(System.Drawing.Rectangle rect) { }
        public Region(System.Drawing.RectangleF rect) { }
        public System.Drawing.Region Clone() { throw null; }
        public void Complement(System.Drawing.Drawing2D.GraphicsPath path) { }
        public void Complement(System.Drawing.Rectangle rect) { }
        public void Complement(System.Drawing.RectangleF rect) { }
        public void Complement(System.Drawing.Region region) { }
        public void Dispose() { }
        public bool Equals(System.Drawing.Region region, System.Drawing.Graphics g) { throw null; }
        public void Exclude(System.Drawing.Drawing2D.GraphicsPath path) { }
        public void Exclude(System.Drawing.Rectangle rect) { }
        public void Exclude(System.Drawing.RectangleF rect) { }
        public void Exclude(System.Drawing.Region region) { }
        ~Region() { }
        public static System.Drawing.Region FromHrgn(System.IntPtr hrgn) { throw null; }
        public System.Drawing.RectangleF GetBounds(System.Drawing.Graphics g) { throw null; }
        public System.IntPtr GetHrgn(System.Drawing.Graphics g) { throw null; }
        public System.Drawing.Drawing2D.RegionData GetRegionData() { throw null; }
        public System.Drawing.RectangleF[] GetRegionScans(System.Drawing.Drawing2D.Matrix matrix) { throw null; }
        public void Intersect(System.Drawing.Drawing2D.GraphicsPath path) { }
        public void Intersect(System.Drawing.Rectangle rect) { }
        public void Intersect(System.Drawing.RectangleF rect) { }
        public void Intersect(System.Drawing.Region region) { }
        public bool IsEmpty(System.Drawing.Graphics g) { throw null; }
        public bool IsInfinite(System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(System.Drawing.Point point) { throw null; }
        public bool IsVisible(System.Drawing.Point point, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(System.Drawing.PointF point) { throw null; }
        public bool IsVisible(System.Drawing.PointF point, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(System.Drawing.Rectangle rect) { throw null; }
        public bool IsVisible(System.Drawing.Rectangle rect, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(System.Drawing.RectangleF rect) { throw null; }
        public bool IsVisible(System.Drawing.RectangleF rect, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(int x, int y, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(int x, int y, int width, int height) { throw null; }
        public bool IsVisible(int x, int y, int width, int height, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(float x, float y) { throw null; }
        public bool IsVisible(float x, float y, System.Drawing.Graphics g) { throw null; }
        public bool IsVisible(float x, float y, float width, float height) { throw null; }
        public bool IsVisible(float x, float y, float width, float height, System.Drawing.Graphics g) { throw null; }
        public void MakeEmpty() { }
        public void MakeInfinite() { }
        public void ReleaseHrgn(System.IntPtr regionHandle) { }
        public void Transform(System.Drawing.Drawing2D.Matrix matrix) { }
        public void Translate(int dx, int dy) { }
        public void Translate(float dx, float dy) { }
        public void Union(System.Drawing.Drawing2D.GraphicsPath path) { }
        public void Union(System.Drawing.Rectangle rect) { }
        public void Union(System.Drawing.RectangleF rect) { }
        public void Union(System.Drawing.Region region) { }
        public void Xor(System.Drawing.Drawing2D.GraphicsPath path) { }
        public void Xor(System.Drawing.Rectangle rect) { }
        public void Xor(System.Drawing.RectangleF rect) { }
        public void Xor(System.Drawing.Region region) { }
    }
    public enum RotateFlipType
    {
        Rotate180FlipNone = 2,
        Rotate180FlipX = 6,
        Rotate180FlipXY = 0,
        Rotate180FlipY = 4,
        Rotate270FlipNone = 3,
        Rotate270FlipX = 7,
        Rotate270FlipXY = 1,
        Rotate270FlipY = 5,
        Rotate90FlipNone = 1,
        Rotate90FlipX = 5,
        Rotate90FlipXY = 3,
        Rotate90FlipY = 7,
        RotateNoneFlipNone = 0,
        RotateNoneFlipX = 4,
        RotateNoneFlipXY = 2,
        RotateNoneFlipY = 6,
    }
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.SizeConverter))]
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct Size : System.IEquatable<System.Drawing.Size>
    {
        private int _dummyPrimitive;
        public static readonly System.Drawing.Size Empty;
        public Size(System.Drawing.Point pt) { throw null; }
        public Size(int width, int height) { throw null; }
        public int Height { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsEmpty { get { throw null; } }
        public int Width { get { throw null; } set { } }
        public static System.Drawing.Size Add(System.Drawing.Size sz1, System.Drawing.Size sz2) { throw null; }
        public static System.Drawing.Size Ceiling(System.Drawing.SizeF value) { throw null; }
        public bool Equals(System.Drawing.Size other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static System.Drawing.Size operator +(System.Drawing.Size sz1, System.Drawing.Size sz2) { throw null; }
        public static System.Drawing.Size operator /(System.Drawing.Size left, int right) { throw null; }
        public static System.Drawing.SizeF operator /(System.Drawing.Size left, float right) { throw null; }
        public static bool operator ==(System.Drawing.Size sz1, System.Drawing.Size sz2) { throw null; }
        public static explicit operator System.Drawing.Point (System.Drawing.Size size) { throw null; }
        public static implicit operator System.Drawing.SizeF (System.Drawing.Size p) { throw null; }
        public static bool operator !=(System.Drawing.Size sz1, System.Drawing.Size sz2) { throw null; }
        public static System.Drawing.Size operator *(System.Drawing.Size left, int right) { throw null; }
        public static System.Drawing.SizeF operator *(System.Drawing.Size left, float right) { throw null; }
        public static System.Drawing.Size operator *(int left, System.Drawing.Size right) { throw null; }
        public static System.Drawing.SizeF operator *(float left, System.Drawing.Size right) { throw null; }
        public static System.Drawing.Size operator -(System.Drawing.Size sz1, System.Drawing.Size sz2) { throw null; }
        public static System.Drawing.Size Round(System.Drawing.SizeF value) { throw null; }
        public static System.Drawing.Size Subtract(System.Drawing.Size sz1, System.Drawing.Size sz2) { throw null; }
        public override string ToString() { throw null; }
        public static System.Drawing.Size Truncate(System.Drawing.SizeF value) { throw null; }
    }
    public partial class SizeConverter : System.ComponentModel.TypeConverter
    {
        public SizeConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
        public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
        public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.SizeFConverter))]
    [System.SerializableAttribute]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct SizeF : System.IEquatable<System.Drawing.SizeF>
    {
        private int _dummyPrimitive;
        public static readonly System.Drawing.SizeF Empty;
        public SizeF(System.Drawing.PointF pt) { throw null; }
        public SizeF(System.Drawing.SizeF size) { throw null; }
        public SizeF(float width, float height) { throw null; }
        public float Height { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        public bool IsEmpty { get { throw null; } }
        public float Width { get { throw null; } set { } }
        public static System.Drawing.SizeF Add(System.Drawing.SizeF sz1, System.Drawing.SizeF sz2) { throw null; }
        public bool Equals(System.Drawing.SizeF other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static System.Drawing.SizeF operator +(System.Drawing.SizeF sz1, System.Drawing.SizeF sz2) { throw null; }
        public static System.Drawing.SizeF operator /(System.Drawing.SizeF left, float right) { throw null; }
        public static bool operator ==(System.Drawing.SizeF sz1, System.Drawing.SizeF sz2) { throw null; }
        public static explicit operator System.Drawing.PointF (System.Drawing.SizeF size) { throw null; }
        public static bool operator !=(System.Drawing.SizeF sz1, System.Drawing.SizeF sz2) { throw null; }
        public static System.Drawing.SizeF operator *(System.Drawing.SizeF left, float right) { throw null; }
        public static System.Drawing.SizeF operator *(float left, System.Drawing.SizeF right) { throw null; }
        public static System.Drawing.SizeF operator -(System.Drawing.SizeF sz1, System.Drawing.SizeF sz2) { throw null; }
        public static System.Drawing.SizeF Subtract(System.Drawing.SizeF sz1, System.Drawing.SizeF sz2) { throw null; }
        public System.Drawing.PointF ToPointF() { throw null; }
        public System.Drawing.Size ToSize() { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class SizeFConverter : System.ComponentModel.TypeConverter
    {
        public SizeFConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
        public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public override System.ComponentModel.PropertyDescriptorCollection GetProperties(System.ComponentModel.ITypeDescriptorContext context, object value, System.Attribute[] attributes) { throw null; }
        public override bool GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    public sealed partial class SolidBrush : System.Drawing.Brush
    {
        public SolidBrush(System.Drawing.Color color) { }
        public System.Drawing.Color Color { get { throw null; } set { } }
        public override object Clone() { throw null; }
        protected override void Dispose(bool disposing) { }
    }
    public enum StringAlignment
    {
        Center = 1,
        Far = 2,
        Near = 0,
    }
    public enum StringDigitSubstitute
    {
        National = 2,
        None = 1,
        Traditional = 3,
        User = 0,
    }
    public sealed partial class StringFormat : System.MarshalByRefObject, System.ICloneable, System.IDisposable
    {
        public StringFormat() { }
        public StringFormat(System.Drawing.StringFormat format) { }
        public StringFormat(System.Drawing.StringFormatFlags options) { }
        public StringFormat(System.Drawing.StringFormatFlags options, int language) { }
        public System.Drawing.StringAlignment Alignment { get { throw null; } set { } }
        public int DigitSubstitutionLanguage { get { throw null; } }
        public System.Drawing.StringDigitSubstitute DigitSubstitutionMethod { get { throw null; } }
        public System.Drawing.StringFormatFlags FormatFlags { get { throw null; } set { } }
        public static System.Drawing.StringFormat GenericDefault { get { throw null; } }
        public static System.Drawing.StringFormat GenericTypographic { get { throw null; } }
        public System.Drawing.Text.HotkeyPrefix HotkeyPrefix { get { throw null; } set { } }
        public System.Drawing.StringAlignment LineAlignment { get { throw null; } set { } }
        public System.Drawing.StringTrimming Trimming { get { throw null; } set { } }
        public object Clone() { throw null; }
        public void Dispose() { }
        ~StringFormat() { }
        public float[] GetTabStops(out float firstTabOffset) { throw null; }
        public void SetDigitSubstitution(int language, System.Drawing.StringDigitSubstitute substitute) { }
        public void SetMeasurableCharacterRanges(System.Drawing.CharacterRange[] ranges) { }
        public void SetTabStops(float firstTabOffset, float[] tabStops) { }
        public override string ToString() { throw null; }
    }
    [System.FlagsAttribute]
    public enum StringFormatFlags
    {
        DirectionRightToLeft = 1,
        DirectionVertical = 2,
        DisplayFormatControl = 32,
        FitBlackBox = 4,
        LineLimit = 8192,
        MeasureTrailingSpaces = 2048,
        NoClip = 16384,
        NoFontFallback = 1024,
        NoWrap = 4096,
    }
    public enum StringTrimming
    {
        Character = 1,
        EllipsisCharacter = 3,
        EllipsisPath = 5,
        EllipsisWord = 4,
        None = 0,
        Word = 2,
    }
    public enum StringUnit
    {
        Display = 1,
        Document = 5,
        Em = 32,
        Inch = 4,
        Millimeter = 6,
        Pixel = 2,
        Point = 3,
        World = 0,
    }
    public static partial class SystemBrushes
    {
        public static System.Drawing.Brush ActiveBorder { get { throw null; } }
        public static System.Drawing.Brush ActiveCaption { get { throw null; } }
        public static System.Drawing.Brush ActiveCaptionText { get { throw null; } }
        public static System.Drawing.Brush AppWorkspace { get { throw null; } }
        public static System.Drawing.Brush ButtonFace { get { throw null; } }
        public static System.Drawing.Brush ButtonHighlight { get { throw null; } }
        public static System.Drawing.Brush ButtonShadow { get { throw null; } }
        public static System.Drawing.Brush Control { get { throw null; } }
        public static System.Drawing.Brush ControlDark { get { throw null; } }
        public static System.Drawing.Brush ControlDarkDark { get { throw null; } }
        public static System.Drawing.Brush ControlLight { get { throw null; } }
        public static System.Drawing.Brush ControlLightLight { get { throw null; } }
        public static System.Drawing.Brush ControlText { get { throw null; } }
        public static System.Drawing.Brush Desktop { get { throw null; } }
        public static System.Drawing.Brush GradientActiveCaption { get { throw null; } }
        public static System.Drawing.Brush GradientInactiveCaption { get { throw null; } }
        public static System.Drawing.Brush GrayText { get { throw null; } }
        public static System.Drawing.Brush Highlight { get { throw null; } }
        public static System.Drawing.Brush HighlightText { get { throw null; } }
        public static System.Drawing.Brush HotTrack { get { throw null; } }
        public static System.Drawing.Brush InactiveBorder { get { throw null; } }
        public static System.Drawing.Brush InactiveCaption { get { throw null; } }
        public static System.Drawing.Brush InactiveCaptionText { get { throw null; } }
        public static System.Drawing.Brush Info { get { throw null; } }
        public static System.Drawing.Brush InfoText { get { throw null; } }
        public static System.Drawing.Brush Menu { get { throw null; } }
        public static System.Drawing.Brush MenuBar { get { throw null; } }
        public static System.Drawing.Brush MenuHighlight { get { throw null; } }
        public static System.Drawing.Brush MenuText { get { throw null; } }
        public static System.Drawing.Brush ScrollBar { get { throw null; } }
        public static System.Drawing.Brush Window { get { throw null; } }
        public static System.Drawing.Brush WindowFrame { get { throw null; } }
        public static System.Drawing.Brush WindowText { get { throw null; } }
        public static System.Drawing.Brush FromSystemColor(System.Drawing.Color c) { throw null; }
    }
    public static partial class SystemColors
    {
        public static System.Drawing.Color ActiveBorder { get { throw null; } }
        public static System.Drawing.Color ActiveCaption { get { throw null; } }
        public static System.Drawing.Color ActiveCaptionText { get { throw null; } }
        public static System.Drawing.Color AppWorkspace { get { throw null; } }
        public static System.Drawing.Color ButtonFace { get { throw null; } }
        public static System.Drawing.Color ButtonHighlight { get { throw null; } }
        public static System.Drawing.Color ButtonShadow { get { throw null; } }
        public static System.Drawing.Color Control { get { throw null; } }
        public static System.Drawing.Color ControlDark { get { throw null; } }
        public static System.Drawing.Color ControlDarkDark { get { throw null; } }
        public static System.Drawing.Color ControlLight { get { throw null; } }
        public static System.Drawing.Color ControlLightLight { get { throw null; } }
        public static System.Drawing.Color ControlText { get { throw null; } }
        public static System.Drawing.Color Desktop { get { throw null; } }
        public static System.Drawing.Color GradientActiveCaption { get { throw null; } }
        public static System.Drawing.Color GradientInactiveCaption { get { throw null; } }
        public static System.Drawing.Color GrayText { get { throw null; } }
        public static System.Drawing.Color Highlight { get { throw null; } }
        public static System.Drawing.Color HighlightText { get { throw null; } }
        public static System.Drawing.Color HotTrack { get { throw null; } }
        public static System.Drawing.Color InactiveBorder { get { throw null; } }
        public static System.Drawing.Color InactiveCaption { get { throw null; } }
        public static System.Drawing.Color InactiveCaptionText { get { throw null; } }
        public static System.Drawing.Color Info { get { throw null; } }
        public static System.Drawing.Color InfoText { get { throw null; } }
        public static System.Drawing.Color Menu { get { throw null; } }
        public static System.Drawing.Color MenuBar { get { throw null; } }
        public static System.Drawing.Color MenuHighlight { get { throw null; } }
        public static System.Drawing.Color MenuText { get { throw null; } }
        public static System.Drawing.Color ScrollBar { get { throw null; } }
        public static System.Drawing.Color Window { get { throw null; } }
        public static System.Drawing.Color WindowFrame { get { throw null; } }
        public static System.Drawing.Color WindowText { get { throw null; } }
    }
    public sealed partial class SystemFonts
    {
        internal SystemFonts() { }
        public static System.Drawing.Font CaptionFont { get { throw null; } }
        public static System.Drawing.Font DefaultFont { get { throw null; } }
        public static System.Drawing.Font DialogFont { get { throw null; } }
        public static System.Drawing.Font IconTitleFont { get { throw null; } }
        public static System.Drawing.Font MenuFont { get { throw null; } }
        public static System.Drawing.Font MessageBoxFont { get { throw null; } }
        public static System.Drawing.Font SmallCaptionFont { get { throw null; } }
        public static System.Drawing.Font StatusFont { get { throw null; } }
        public static System.Drawing.Font GetFontByName(string systemFontName) { throw null; }
    }
    public sealed partial class SystemIcons
    {
        internal SystemIcons() { }
        public static System.Drawing.Icon Application { get { throw null; } }
        public static System.Drawing.Icon Asterisk { get { throw null; } }
        public static System.Drawing.Icon Error { get { throw null; } }
        public static System.Drawing.Icon Exclamation { get { throw null; } }
        public static System.Drawing.Icon Hand { get { throw null; } }
        public static System.Drawing.Icon Information { get { throw null; } }
        public static System.Drawing.Icon Question { get { throw null; } }
        public static System.Drawing.Icon Shield { get { throw null; } }
        public static System.Drawing.Icon Warning { get { throw null; } }
        public static System.Drawing.Icon WinLogo { get { throw null; } }
    }
    public sealed partial class SystemPens
    {
        internal SystemPens() { }
        public static System.Drawing.Pen ActiveBorder { get { throw null; } }
        public static System.Drawing.Pen ActiveCaption { get { throw null; } }
        public static System.Drawing.Pen ActiveCaptionText { get { throw null; } }
        public static System.Drawing.Pen AppWorkspace { get { throw null; } }
        public static System.Drawing.Pen ButtonFace { get { throw null; } }
        public static System.Drawing.Pen ButtonHighlight { get { throw null; } }
        public static System.Drawing.Pen ButtonShadow { get { throw null; } }
        public static System.Drawing.Pen Control { get { throw null; } }
        public static System.Drawing.Pen ControlDark { get { throw null; } }
        public static System.Drawing.Pen ControlDarkDark { get { throw null; } }
        public static System.Drawing.Pen ControlLight { get { throw null; } }
        public static System.Drawing.Pen ControlLightLight { get { throw null; } }
        public static System.Drawing.Pen ControlText { get { throw null; } }
        public static System.Drawing.Pen Desktop { get { throw null; } }
        public static System.Drawing.Pen GradientActiveCaption { get { throw null; } }
        public static System.Drawing.Pen GradientInactiveCaption { get { throw null; } }
        public static System.Drawing.Pen GrayText { get { throw null; } }
        public static System.Drawing.Pen Highlight { get { throw null; } }
        public static System.Drawing.Pen HighlightText { get { throw null; } }
        public static System.Drawing.Pen HotTrack { get { throw null; } }
        public static System.Drawing.Pen InactiveBorder { get { throw null; } }
        public static System.Drawing.Pen InactiveCaption { get { throw null; } }
        public static System.Drawing.Pen InactiveCaptionText { get { throw null; } }
        public static System.Drawing.Pen Info { get { throw null; } }
        public static System.Drawing.Pen InfoText { get { throw null; } }
        public static System.Drawing.Pen Menu { get { throw null; } }
        public static System.Drawing.Pen MenuBar { get { throw null; } }
        public static System.Drawing.Pen MenuHighlight { get { throw null; } }
        public static System.Drawing.Pen MenuText { get { throw null; } }
        public static System.Drawing.Pen ScrollBar { get { throw null; } }
        public static System.Drawing.Pen Window { get { throw null; } }
        public static System.Drawing.Pen WindowFrame { get { throw null; } }
        public static System.Drawing.Pen WindowText { get { throw null; } }
        public static System.Drawing.Pen FromSystemColor(System.Drawing.Color c) { throw null; }
    }
    public sealed partial class TextureBrush : System.Drawing.Brush
    {
        public TextureBrush(System.Drawing.Image bitmap) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.Drawing2D.WrapMode wrapMode) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.Drawing2D.WrapMode wrapMode, System.Drawing.Rectangle dstRect) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.Drawing2D.WrapMode wrapMode, System.Drawing.RectangleF dstRect) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.Rectangle dstRect) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.Rectangle dstRect, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.RectangleF dstRect) { }
        public TextureBrush(System.Drawing.Image image, System.Drawing.RectangleF dstRect, System.Drawing.Imaging.ImageAttributes imageAttr) { }
        public System.Drawing.Image Image { get { throw null; } }
        public System.Drawing.Drawing2D.Matrix Transform { get { throw null; } set { } }
        public System.Drawing.Drawing2D.WrapMode WrapMode { get { throw null; } set { } }
        public override object Clone() { throw null; }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix) { }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ResetTransform() { }
        public void RotateTransform(float angle) { }
        public void RotateTransform(float angle, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ScaleTransform(float sx, float sy) { }
        public void ScaleTransform(float sx, float sy, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void TranslateTransform(float dx, float dy) { }
        public void TranslateTransform(float dx, float dy, System.Drawing.Drawing2D.MatrixOrder order) { }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.Class)]
    public partial class ToolboxBitmapAttribute : System.Attribute
    {
        public static readonly System.Drawing.ToolboxBitmapAttribute Default;
        public ToolboxBitmapAttribute(string imageFile) { }
        public ToolboxBitmapAttribute(System.Type t) { }
        public ToolboxBitmapAttribute(System.Type t, string name) { }
        public override bool Equals(object value) { throw null; }
        public override int GetHashCode() { throw null; }
        public System.Drawing.Image GetImage(object component) { throw null; }
        public System.Drawing.Image GetImage(object component, bool large) { throw null; }
        public System.Drawing.Image GetImage(System.Type type) { throw null; }
        public System.Drawing.Image GetImage(System.Type type, bool large) { throw null; }
        public System.Drawing.Image GetImage(System.Type type, string imgName, bool large) { throw null; }
        public static System.Drawing.Image GetImageFromResource(System.Type t, string imageName, bool large) { throw null; }
    }
}
namespace System.Drawing.Design
{
    public sealed partial class CategoryNameCollection : System.Collections.ReadOnlyCollectionBase
    {
        public CategoryNameCollection(System.Drawing.Design.CategoryNameCollection value) { }
        public CategoryNameCollection(string[] value) { }
        public string this[int index] { get { throw null; } }
        public bool Contains(string value) { throw null; }
        public void CopyTo(string[] array, int index) { }
        public int IndexOf(string value) { throw null; }
    }
    public partial interface IPropertyValueUIService
    {
        event System.EventHandler PropertyUIValueItemsChanged;
        void AddPropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler newHandler);
        System.Drawing.Design.PropertyValueUIItem[] GetPropertyUIValueItems(System.ComponentModel.ITypeDescriptorContext context, System.ComponentModel.PropertyDescriptor propDesc);
        void NotifyPropertyValueUIItemsChanged();
        void RemovePropertyValueUIHandler(System.Drawing.Design.PropertyValueUIHandler newHandler);
    }
    public partial interface IToolboxItemProvider
    {
        System.Drawing.Design.ToolboxItemCollection Items { get; }
    }
    [System.Runtime.InteropServices.GuidAttribute("4BACD258-DE64-4048-BC4E-FEDBEF9ACB76")]
    [System.Runtime.InteropServices.InterfaceTypeAttribute(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
    public partial interface IToolboxService
    {
        System.Drawing.Design.CategoryNameCollection CategoryNames { get; }
        string SelectedCategory { get; set; }
        void AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback creator, string format);
        void AddCreator(System.Drawing.Design.ToolboxItemCreatorCallback creator, string format, System.ComponentModel.Design.IDesignerHost host);
        void AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem, System.ComponentModel.Design.IDesignerHost host);
        void AddLinkedToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem, string category, System.ComponentModel.Design.IDesignerHost host);
        void AddToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem);
        void AddToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem, string category);
        System.Drawing.Design.ToolboxItem DeserializeToolboxItem(object serializedObject);
        System.Drawing.Design.ToolboxItem DeserializeToolboxItem(object serializedObject, System.ComponentModel.Design.IDesignerHost host);
        System.Drawing.Design.ToolboxItem GetSelectedToolboxItem();
        System.Drawing.Design.ToolboxItem GetSelectedToolboxItem(System.ComponentModel.Design.IDesignerHost host);
        System.Drawing.Design.ToolboxItemCollection GetToolboxItems();
        System.Drawing.Design.ToolboxItemCollection GetToolboxItems(System.ComponentModel.Design.IDesignerHost host);
        System.Drawing.Design.ToolboxItemCollection GetToolboxItems(string category);
        System.Drawing.Design.ToolboxItemCollection GetToolboxItems(string category, System.ComponentModel.Design.IDesignerHost host);
        bool IsSupported(object serializedObject, System.Collections.ICollection filterAttributes);
        bool IsSupported(object serializedObject, System.ComponentModel.Design.IDesignerHost host);
        bool IsToolboxItem(object serializedObject);
        bool IsToolboxItem(object serializedObject, System.ComponentModel.Design.IDesignerHost host);
        void Refresh();
        void RemoveCreator(string format);
        void RemoveCreator(string format, System.ComponentModel.Design.IDesignerHost host);
        void RemoveToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem);
        void RemoveToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem, string category);
        void SelectedToolboxItemUsed();
        object SerializeToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem);
        bool SetCursor();
        void SetSelectedToolboxItem(System.Drawing.Design.ToolboxItem toolboxItem);
    }
    public partial interface IToolboxUser
    {
        bool GetToolSupported(System.Drawing.Design.ToolboxItem tool);
        void ToolPicked(System.Drawing.Design.ToolboxItem tool);
    }
    public partial class PaintValueEventArgs : System.EventArgs
    {
        public PaintValueEventArgs(System.ComponentModel.ITypeDescriptorContext context, object value, System.Drawing.Graphics graphics, System.Drawing.Rectangle bounds) { }
        public System.Drawing.Rectangle Bounds { get { throw null; } }
        public System.ComponentModel.ITypeDescriptorContext Context { get { throw null; } }
        public System.Drawing.Graphics Graphics { get { throw null; } }
        public object Value { get { throw null; } }
    }
    public delegate void PropertyValueUIHandler(System.ComponentModel.ITypeDescriptorContext context, System.ComponentModel.PropertyDescriptor propDesc, System.Collections.ArrayList valueUIItemList);
    public partial class PropertyValueUIItem
    {
        public PropertyValueUIItem(System.Drawing.Image uiItemImage, System.Drawing.Design.PropertyValueUIItemInvokeHandler handler, string tooltip) { }
        public virtual System.Drawing.Image Image { get { throw null; } }
        public virtual System.Drawing.Design.PropertyValueUIItemInvokeHandler InvokeHandler { get { throw null; } }
        public virtual string ToolTip { get { throw null; } }
        public virtual void Reset() { }
    }
    public delegate void PropertyValueUIItemInvokeHandler(System.ComponentModel.ITypeDescriptorContext context, System.ComponentModel.PropertyDescriptor descriptor, System.Drawing.Design.PropertyValueUIItem invokedItem);
    public partial class ToolboxComponentsCreatedEventArgs : System.EventArgs
    {
        public ToolboxComponentsCreatedEventArgs(System.ComponentModel.IComponent[] components) { }
        public System.ComponentModel.IComponent[] Components { get { throw null; } }
    }
    public delegate void ToolboxComponentsCreatedEventHandler(object sender, System.Drawing.Design.ToolboxComponentsCreatedEventArgs e);
    public partial class ToolboxComponentsCreatingEventArgs : System.EventArgs
    {
        public ToolboxComponentsCreatingEventArgs(System.ComponentModel.Design.IDesignerHost host) { }
        public System.ComponentModel.Design.IDesignerHost DesignerHost { get { throw null; } }
    }
    public delegate void ToolboxComponentsCreatingEventHandler(object sender, System.Drawing.Design.ToolboxComponentsCreatingEventArgs e);
    [System.MonoTODOAttribute("Implementation is incomplete.")]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Unrestricted=true)]
    [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Unrestricted=true)]
    [System.SerializableAttribute]
    public partial class ToolboxItem : System.Runtime.Serialization.ISerializable
    {
        public ToolboxItem() { }
        public ToolboxItem(System.Type toolType) { }
        public System.Reflection.AssemblyName AssemblyName { get { throw null; } set { } }
        public System.Drawing.Bitmap Bitmap { get { throw null; } set { } }
        public string Company { get { throw null; } set { } }
        public virtual string ComponentType { get { throw null; } }
        public System.Reflection.AssemblyName[] DependentAssemblies { get { throw null; } set { } }
        public string Description { get { throw null; } set { } }
        public string DisplayName { get { throw null; } set { } }
        public System.Collections.ICollection Filter { get { throw null; } set { } }
        public bool IsTransient { get { throw null; } set { } }
        public virtual bool Locked { get { throw null; } }
        public System.Collections.IDictionary Properties { get { throw null; } }
        public string TypeName { get { throw null; } set { } }
        public virtual string Version { get { throw null; } }
        public event System.Drawing.Design.ToolboxComponentsCreatedEventHandler ComponentsCreated { add { } remove { } }
        public event System.Drawing.Design.ToolboxComponentsCreatingEventHandler ComponentsCreating { add { } remove { } }
        protected void CheckUnlocked() { }
        public System.ComponentModel.IComponent[] CreateComponents() { throw null; }
        public System.ComponentModel.IComponent[] CreateComponents(System.ComponentModel.Design.IDesignerHost host) { throw null; }
        public System.ComponentModel.IComponent[] CreateComponents(System.ComponentModel.Design.IDesignerHost host, System.Collections.IDictionary defaultValues) { throw null; }
        protected virtual System.ComponentModel.IComponent[] CreateComponentsCore(System.ComponentModel.Design.IDesignerHost host) { throw null; }
        protected virtual System.ComponentModel.IComponent[] CreateComponentsCore(System.ComponentModel.Design.IDesignerHost host, System.Collections.IDictionary defaultValues) { throw null; }
        protected virtual void Deserialize(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public override bool Equals(object obj) { throw null; }
        protected virtual object FilterPropertyValue(string propertyName, object value) { throw null; }
        public override int GetHashCode() { throw null; }
        public System.Type GetType(System.ComponentModel.Design.IDesignerHost host) { throw null; }
        protected virtual System.Type GetType(System.ComponentModel.Design.IDesignerHost host, System.Reflection.AssemblyName assemblyName, string typeName, bool reference) { throw null; }
        public virtual void Initialize(System.Type type) { }
        public virtual void Lock() { }
        protected virtual void OnComponentsCreated(System.Drawing.Design.ToolboxComponentsCreatedEventArgs args) { }
        protected virtual void OnComponentsCreating(System.Drawing.Design.ToolboxComponentsCreatingEventArgs args) { }
        protected virtual void Serialize(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public override string ToString() { throw null; }
        protected void ValidatePropertyType(string propertyName, object value, System.Type expectedType, bool allowNull) { }
        protected virtual object ValidatePropertyValue(string propertyName, object value) { throw null; }
    }
    public sealed partial class ToolboxItemCollection : System.Collections.ReadOnlyCollectionBase
    {
        public ToolboxItemCollection(System.Drawing.Design.ToolboxItemCollection value) { }
        public ToolboxItemCollection(System.Drawing.Design.ToolboxItem[] value) { }
        public System.Drawing.Design.ToolboxItem this[int index] { get { throw null; } }
        public bool Contains(System.Drawing.Design.ToolboxItem value) { throw null; }
        public void CopyTo(System.Drawing.Design.ToolboxItem[] array, int index) { }
        public int IndexOf(System.Drawing.Design.ToolboxItem value) { throw null; }
    }
    public delegate System.Drawing.Design.ToolboxItem ToolboxItemCreatorCallback(object serializedObject, string format);
    public partial class UITypeEditor
    {
        public UITypeEditor() { }
        public virtual bool IsDropDownResizable { get { throw null; } }
        public virtual object EditValue(System.ComponentModel.ITypeDescriptorContext context, System.IServiceProvider provider, object value) { throw null; }
        public object EditValue(System.IServiceProvider provider, object value) { throw null; }
        public System.Drawing.Design.UITypeEditorEditStyle GetEditStyle() { throw null; }
        public virtual System.Drawing.Design.UITypeEditorEditStyle GetEditStyle(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public bool GetPaintValueSupported() { throw null; }
        public virtual bool GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
        public virtual void PaintValue(System.Drawing.Design.PaintValueEventArgs e) { }
        public void PaintValue(object value, System.Drawing.Graphics canvas, System.Drawing.Rectangle rectangle) { }
    }
    public enum UITypeEditorEditStyle
    {
        DropDown = 3,
        Modal = 2,
        None = 1,
    }
}
namespace System.Drawing.Drawing2D
{
    public sealed partial class AdjustableArrowCap : System.Drawing.Drawing2D.CustomLineCap
    {
        public AdjustableArrowCap(float width, float height) : base (default(System.Drawing.Drawing2D.GraphicsPath), default(System.Drawing.Drawing2D.GraphicsPath)) { }
        public AdjustableArrowCap(float width, float height, bool isFilled) : base (default(System.Drawing.Drawing2D.GraphicsPath), default(System.Drawing.Drawing2D.GraphicsPath)) { }
        public bool Filled { get { throw null; } set { } }
        public float Height { get { throw null; } set { } }
        public float MiddleInset { get { throw null; } set { } }
        public float Width { get { throw null; } set { } }
    }
    public sealed partial class Blend
    {
        public Blend() { }
        public Blend(int count) { }
        public float[] Factors { get { throw null; } set { } }
        public float[] Positions { get { throw null; } set { } }
    }
    public sealed partial class ColorBlend
    {
        public ColorBlend() { }
        public ColorBlend(int count) { }
        public System.Drawing.Color[] Colors { get { throw null; } set { } }
        public float[] Positions { get { throw null; } set { } }
    }
    public enum CombineMode
    {
        Complement = 5,
        Exclude = 4,
        Intersect = 1,
        Replace = 0,
        Union = 2,
        Xor = 3,
    }
    public enum CompositingMode
    {
        SourceCopy = 1,
        SourceOver = 0,
    }
    public enum CompositingQuality
    {
        AssumeLinear = 4,
        Default = 0,
        GammaCorrected = 3,
        HighQuality = 2,
        HighSpeed = 1,
        Invalid = -1,
    }
    public enum CoordinateSpace
    {
        Device = 2,
        Page = 1,
        World = 0,
    }
    public partial class CustomLineCap : System.MarshalByRefObject, System.ICloneable, System.IDisposable
    {
        public CustomLineCap(System.Drawing.Drawing2D.GraphicsPath fillPath, System.Drawing.Drawing2D.GraphicsPath strokePath) { }
        public CustomLineCap(System.Drawing.Drawing2D.GraphicsPath fillPath, System.Drawing.Drawing2D.GraphicsPath strokePath, System.Drawing.Drawing2D.LineCap baseCap) { }
        public CustomLineCap(System.Drawing.Drawing2D.GraphicsPath fillPath, System.Drawing.Drawing2D.GraphicsPath strokePath, System.Drawing.Drawing2D.LineCap baseCap, float baseInset) { }
        public System.Drawing.Drawing2D.LineCap BaseCap { get { throw null; } set { } }
        public float BaseInset { get { throw null; } set { } }
        public System.Drawing.Drawing2D.LineJoin StrokeJoin { get { throw null; } set { } }
        public float WidthScale { get { throw null; } set { } }
        public object Clone() { throw null; }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        ~CustomLineCap() { }
        public void GetStrokeCaps(out System.Drawing.Drawing2D.LineCap startCap, out System.Drawing.Drawing2D.LineCap endCap) { throw null; }
        public void SetStrokeCaps(System.Drawing.Drawing2D.LineCap startCap, System.Drawing.Drawing2D.LineCap endCap) { }
    }
    public enum DashCap
    {
        Flat = 0,
        Round = 2,
        Triangle = 3,
    }
    public enum DashStyle
    {
        Custom = 5,
        Dash = 1,
        DashDot = 3,
        DashDotDot = 4,
        Dot = 2,
        Solid = 0,
    }
    public enum FillMode
    {
        Alternate = 0,
        Winding = 1,
    }
    public enum FlushIntention
    {
        Flush = 0,
        Sync = 1,
    }
    public sealed partial class GraphicsContainer : System.MarshalByRefObject
    {
        internal GraphicsContainer() { }
    }
    public sealed partial class GraphicsPath : System.MarshalByRefObject, System.ICloneable, System.IDisposable
    {
        public GraphicsPath() { }
        public GraphicsPath(System.Drawing.Drawing2D.FillMode fillMode) { }
        public GraphicsPath(System.Drawing.PointF[] pts, byte[] types) { }
        public GraphicsPath(System.Drawing.PointF[] pts, byte[] types, System.Drawing.Drawing2D.FillMode fillMode) { }
        public GraphicsPath(System.Drawing.Point[] pts, byte[] types) { }
        public GraphicsPath(System.Drawing.Point[] pts, byte[] types, System.Drawing.Drawing2D.FillMode fillMode) { }
        public System.Drawing.Drawing2D.FillMode FillMode { get { throw null; } set { } }
        public System.Drawing.Drawing2D.PathData PathData { get { throw null; } }
        public System.Drawing.PointF[] PathPoints { get { throw null; } }
        public byte[] PathTypes { get { throw null; } }
        public int PointCount { get { throw null; } }
        public void AddArc(System.Drawing.Rectangle rect, float startAngle, float sweepAngle) { }
        public void AddArc(System.Drawing.RectangleF rect, float startAngle, float sweepAngle) { }
        public void AddArc(int x, int y, int width, int height, float startAngle, float sweepAngle) { }
        public void AddArc(float x, float y, float width, float height, float startAngle, float sweepAngle) { }
        public void AddBezier(System.Drawing.Point pt1, System.Drawing.Point pt2, System.Drawing.Point pt3, System.Drawing.Point pt4) { }
        public void AddBezier(System.Drawing.PointF pt1, System.Drawing.PointF pt2, System.Drawing.PointF pt3, System.Drawing.PointF pt4) { }
        public void AddBezier(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4) { }
        public void AddBezier(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4) { }
        public void AddBeziers(System.Drawing.PointF[] points) { }
        public void AddBeziers(params System.Drawing.Point[] points) { }
        public void AddClosedCurve(System.Drawing.PointF[] points) { }
        public void AddClosedCurve(System.Drawing.PointF[] points, float tension) { }
        public void AddClosedCurve(System.Drawing.Point[] points) { }
        public void AddClosedCurve(System.Drawing.Point[] points, float tension) { }
        public void AddCurve(System.Drawing.PointF[] points) { }
        public void AddCurve(System.Drawing.PointF[] points, int offset, int numberOfSegments, float tension) { }
        public void AddCurve(System.Drawing.PointF[] points, float tension) { }
        public void AddCurve(System.Drawing.Point[] points) { }
        public void AddCurve(System.Drawing.Point[] points, int offset, int numberOfSegments, float tension) { }
        public void AddCurve(System.Drawing.Point[] points, float tension) { }
        public void AddEllipse(System.Drawing.Rectangle rect) { }
        public void AddEllipse(System.Drawing.RectangleF rect) { }
        public void AddEllipse(int x, int y, int width, int height) { }
        public void AddEllipse(float x, float y, float width, float height) { }
        public void AddLine(System.Drawing.Point pt1, System.Drawing.Point pt2) { }
        public void AddLine(System.Drawing.PointF pt1, System.Drawing.PointF pt2) { }
        public void AddLine(int x1, int y1, int x2, int y2) { }
        public void AddLine(float x1, float y1, float x2, float y2) { }
        public void AddLines(System.Drawing.PointF[] points) { }
        public void AddLines(System.Drawing.Point[] points) { }
        public void AddPath(System.Drawing.Drawing2D.GraphicsPath addingPath, bool connect) { }
        public void AddPie(System.Drawing.Rectangle rect, float startAngle, float sweepAngle) { }
        public void AddPie(int x, int y, int width, int height, float startAngle, float sweepAngle) { }
        public void AddPie(float x, float y, float width, float height, float startAngle, float sweepAngle) { }
        public void AddPolygon(System.Drawing.PointF[] points) { }
        public void AddPolygon(System.Drawing.Point[] points) { }
        public void AddRectangle(System.Drawing.Rectangle rect) { }
        public void AddRectangle(System.Drawing.RectangleF rect) { }
        public void AddRectangles(System.Drawing.RectangleF[] rects) { }
        public void AddRectangles(System.Drawing.Rectangle[] rects) { }
        [System.MonoTODOAttribute("The StringFormat parameter is ignored when using libgdiplus.")]
        public void AddString(string s, System.Drawing.FontFamily family, int style, float emSize, System.Drawing.Point origin, System.Drawing.StringFormat format) { }
        [System.MonoTODOAttribute("The StringFormat parameter is ignored when using libgdiplus.")]
        public void AddString(string s, System.Drawing.FontFamily family, int style, float emSize, System.Drawing.PointF origin, System.Drawing.StringFormat format) { }
        [System.MonoTODOAttribute("The layoutRect and StringFormat parameters are ignored when using libgdiplus.")]
        public void AddString(string s, System.Drawing.FontFamily family, int style, float emSize, System.Drawing.Rectangle layoutRect, System.Drawing.StringFormat format) { }
        [System.MonoTODOAttribute("The layoutRect and StringFormat parameters are ignored when using libgdiplus.")]
        public void AddString(string s, System.Drawing.FontFamily family, int style, float emSize, System.Drawing.RectangleF layoutRect, System.Drawing.StringFormat format) { }
        public void ClearMarkers() { }
        public object Clone() { throw null; }
        public void CloseAllFigures() { }
        public void CloseFigure() { }
        public void Dispose() { }
        ~GraphicsPath() { }
        public void Flatten() { }
        public void Flatten(System.Drawing.Drawing2D.Matrix matrix) { }
        public void Flatten(System.Drawing.Drawing2D.Matrix matrix, float flatness) { }
        public System.Drawing.RectangleF GetBounds() { throw null; }
        public System.Drawing.RectangleF GetBounds(System.Drawing.Drawing2D.Matrix matrix) { throw null; }
        public System.Drawing.RectangleF GetBounds(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Pen pen) { throw null; }
        public System.Drawing.PointF GetLastPoint() { throw null; }
        public bool IsOutlineVisible(System.Drawing.Point point, System.Drawing.Pen pen) { throw null; }
        public bool IsOutlineVisible(System.Drawing.Point pt, System.Drawing.Pen pen, System.Drawing.Graphics graphics) { throw null; }
        public bool IsOutlineVisible(System.Drawing.PointF point, System.Drawing.Pen pen) { throw null; }
        public bool IsOutlineVisible(System.Drawing.PointF pt, System.Drawing.Pen pen, System.Drawing.Graphics graphics) { throw null; }
        public bool IsOutlineVisible(int x, int y, System.Drawing.Pen pen) { throw null; }
        public bool IsOutlineVisible(int x, int y, System.Drawing.Pen pen, System.Drawing.Graphics graphics) { throw null; }
        public bool IsOutlineVisible(float x, float y, System.Drawing.Pen pen) { throw null; }
        public bool IsOutlineVisible(float x, float y, System.Drawing.Pen pen, System.Drawing.Graphics graphics) { throw null; }
        public bool IsVisible(System.Drawing.Point point) { throw null; }
        public bool IsVisible(System.Drawing.Point pt, System.Drawing.Graphics graphics) { throw null; }
        public bool IsVisible(System.Drawing.PointF point) { throw null; }
        public bool IsVisible(System.Drawing.PointF pt, System.Drawing.Graphics graphics) { throw null; }
        public bool IsVisible(int x, int y) { throw null; }
        public bool IsVisible(int x, int y, System.Drawing.Graphics graphics) { throw null; }
        public bool IsVisible(float x, float y) { throw null; }
        public bool IsVisible(float x, float y, System.Drawing.Graphics graphics) { throw null; }
        public void Reset() { }
        public void Reverse() { }
        public void SetMarkers() { }
        public void StartFigure() { }
        public void Transform(System.Drawing.Drawing2D.Matrix matrix) { }
        [System.MonoTODOAttribute("GdipWarpPath isn't implemented in libgdiplus")]
        public void Warp(System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect) { }
        [System.MonoTODOAttribute("GdipWarpPath isn't implemented in libgdiplus")]
        public void Warp(System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.Drawing2D.Matrix matrix) { }
        [System.MonoTODOAttribute("GdipWarpPath isn't implemented in libgdiplus")]
        public void Warp(System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.WarpMode warpMode) { }
        [System.MonoTODOAttribute("GdipWarpPath isn't implemented in libgdiplus")]
        public void Warp(System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.WarpMode warpMode, float flatness) { }
        [System.MonoTODOAttribute("GdipWidenPath isn't implemented in libgdiplus")]
        public void Widen(System.Drawing.Pen pen) { }
        [System.MonoTODOAttribute("GdipWidenPath isn't implemented in libgdiplus")]
        public void Widen(System.Drawing.Pen pen, System.Drawing.Drawing2D.Matrix matrix) { }
        [System.MonoTODOAttribute("GdipWidenPath isn't implemented in libgdiplus")]
        public void Widen(System.Drawing.Pen pen, System.Drawing.Drawing2D.Matrix matrix, float flatness) { }
    }
    public sealed partial class GraphicsPathIterator : System.MarshalByRefObject, System.IDisposable
    {
        public GraphicsPathIterator(System.Drawing.Drawing2D.GraphicsPath path) { }
        public int Count { get { throw null; } }
        public int SubpathCount { get { throw null; } }
        public int CopyData(ref System.Drawing.PointF[] points, ref byte[] types, int startIndex, int endIndex) { throw null; }
        public void Dispose() { }
        public int Enumerate(ref System.Drawing.PointF[] points, ref byte[] types) { throw null; }
        ~GraphicsPathIterator() { }
        public bool HasCurve() { throw null; }
        public int NextMarker(System.Drawing.Drawing2D.GraphicsPath path) { throw null; }
        public int NextMarker(out int startIndex, out int endIndex) { throw null; }
        public int NextPathType(out byte pathType, out int startIndex, out int endIndex) { throw null; }
        public int NextSubpath(System.Drawing.Drawing2D.GraphicsPath path, out bool isClosed) { throw null; }
        public int NextSubpath(out int startIndex, out int endIndex, out bool isClosed) { throw null; }
        public void Rewind() { }
    }
    public sealed partial class GraphicsState : System.MarshalByRefObject
    {
        internal GraphicsState() { }
    }
    public sealed partial class HatchBrush : System.Drawing.Brush
    {
        public HatchBrush(System.Drawing.Drawing2D.HatchStyle hatchstyle, System.Drawing.Color foreColor) { }
        public HatchBrush(System.Drawing.Drawing2D.HatchStyle hatchstyle, System.Drawing.Color foreColor, System.Drawing.Color backColor) { }
        public System.Drawing.Color BackgroundColor { get { throw null; } }
        public System.Drawing.Color ForegroundColor { get { throw null; } }
        public System.Drawing.Drawing2D.HatchStyle HatchStyle { get { throw null; } }
        public override object Clone() { throw null; }
    }
    public enum HatchStyle
    {
        BackwardDiagonal = 3,
        Cross = 4,
        DarkDownwardDiagonal = 20,
        DarkHorizontal = 29,
        DarkUpwardDiagonal = 21,
        DarkVertical = 28,
        DashedDownwardDiagonal = 30,
        DashedHorizontal = 32,
        DashedUpwardDiagonal = 31,
        DashedVertical = 33,
        DiagonalBrick = 38,
        DiagonalCross = 5,
        Divot = 42,
        DottedDiamond = 44,
        DottedGrid = 43,
        ForwardDiagonal = 2,
        Horizontal = 0,
        HorizontalBrick = 39,
        LargeCheckerBoard = 50,
        LargeConfetti = 35,
        LargeGrid = 4,
        LightDownwardDiagonal = 18,
        LightHorizontal = 25,
        LightUpwardDiagonal = 19,
        LightVertical = 24,
        Max = 4,
        Min = 0,
        NarrowHorizontal = 27,
        NarrowVertical = 26,
        OutlinedDiamond = 51,
        Percent05 = 6,
        Percent10 = 7,
        Percent20 = 8,
        Percent25 = 9,
        Percent30 = 10,
        Percent40 = 11,
        Percent50 = 12,
        Percent60 = 13,
        Percent70 = 14,
        Percent75 = 15,
        Percent80 = 16,
        Percent90 = 17,
        Plaid = 41,
        Shingle = 45,
        SmallCheckerBoard = 49,
        SmallConfetti = 34,
        SmallGrid = 48,
        SolidDiamond = 52,
        Sphere = 47,
        Trellis = 46,
        Vertical = 1,
        Wave = 37,
        Weave = 40,
        WideDownwardDiagonal = 22,
        WideUpwardDiagonal = 23,
        ZigZag = 36,
    }
    public enum InterpolationMode
    {
        Bicubic = 4,
        Bilinear = 3,
        Default = 0,
        High = 2,
        HighQualityBicubic = 7,
        HighQualityBilinear = 6,
        Invalid = -1,
        Low = 1,
        NearestNeighbor = 5,
    }
    public sealed partial class LinearGradientBrush : System.Drawing.Brush
    {
        public LinearGradientBrush(System.Drawing.Point point1, System.Drawing.Point point2, System.Drawing.Color color1, System.Drawing.Color color2) { }
        public LinearGradientBrush(System.Drawing.PointF point1, System.Drawing.PointF point2, System.Drawing.Color color1, System.Drawing.Color color2) { }
        public LinearGradientBrush(System.Drawing.Rectangle rect, System.Drawing.Color color1, System.Drawing.Color color2, System.Drawing.Drawing2D.LinearGradientMode linearGradientMode) { }
        public LinearGradientBrush(System.Drawing.Rectangle rect, System.Drawing.Color color1, System.Drawing.Color color2, float angle) { }
        public LinearGradientBrush(System.Drawing.Rectangle rect, System.Drawing.Color color1, System.Drawing.Color color2, float angle, bool isAngleScaleable) { }
        public LinearGradientBrush(System.Drawing.RectangleF rect, System.Drawing.Color color1, System.Drawing.Color color2, System.Drawing.Drawing2D.LinearGradientMode linearGradientMode) { }
        public LinearGradientBrush(System.Drawing.RectangleF rect, System.Drawing.Color color1, System.Drawing.Color color2, float angle) { }
        public LinearGradientBrush(System.Drawing.RectangleF rect, System.Drawing.Color color1, System.Drawing.Color color2, float angle, bool isAngleScaleable) { }
        public System.Drawing.Drawing2D.Blend Blend { get { throw null; } set { } }
        [System.MonoTODOAttribute("The GammaCorrection value is ignored when using libgdiplus.")]
        public bool GammaCorrection { get { throw null; } set { } }
        public System.Drawing.Drawing2D.ColorBlend InterpolationColors { get { throw null; } set { } }
        public System.Drawing.Color[] LinearColors { get { throw null; } set { } }
        public System.Drawing.RectangleF Rectangle { get { throw null; } }
        public System.Drawing.Drawing2D.Matrix Transform { get { throw null; } set { } }
        public System.Drawing.Drawing2D.WrapMode WrapMode { get { throw null; } set { } }
        public override object Clone() { throw null; }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix) { }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ResetTransform() { }
        public void RotateTransform(float angle) { }
        public void RotateTransform(float angle, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ScaleTransform(float sx, float sy) { }
        public void ScaleTransform(float sx, float sy, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void SetBlendTriangularShape(float focus) { }
        public void SetBlendTriangularShape(float focus, float scale) { }
        public void SetSigmaBellShape(float focus) { }
        public void SetSigmaBellShape(float focus, float scale) { }
        public void TranslateTransform(float dx, float dy) { }
        public void TranslateTransform(float dx, float dy, System.Drawing.Drawing2D.MatrixOrder order) { }
    }
    public enum LinearGradientMode
    {
        BackwardDiagonal = 3,
        ForwardDiagonal = 2,
        Horizontal = 0,
        Vertical = 1,
    }
    public enum LineCap
    {
        AnchorMask = 240,
        ArrowAnchor = 20,
        Custom = 255,
        DiamondAnchor = 19,
        Flat = 0,
        NoAnchor = 16,
        Round = 2,
        RoundAnchor = 18,
        Square = 1,
        SquareAnchor = 17,
        Triangle = 3,
    }
    public enum LineJoin
    {
        Bevel = 1,
        Miter = 0,
        MiterClipped = 3,
        Round = 2,
    }
    public sealed partial class Matrix : System.MarshalByRefObject, System.IDisposable
    {
        public Matrix() { }
        public Matrix(System.Drawing.Rectangle rect, System.Drawing.Point[] plgpts) { }
        public Matrix(System.Drawing.RectangleF rect, System.Drawing.PointF[] plgpts) { }
        public Matrix(float m11, float m12, float m21, float m22, float dx, float dy) { }
        public float[] Elements { get { throw null; } }
        public bool IsIdentity { get { throw null; } }
        public bool IsInvertible { get { throw null; } }
        public float OffsetX { get { throw null; } }
        public float OffsetY { get { throw null; } }
        public System.Drawing.Drawing2D.Matrix Clone() { throw null; }
        public void Dispose() { }
        public override bool Equals(object obj) { throw null; }
        ~Matrix() { }
        public override int GetHashCode() { throw null; }
        public void Invert() { }
        public void Multiply(System.Drawing.Drawing2D.Matrix matrix) { }
        public void Multiply(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void Reset() { }
        public void Rotate(float angle) { }
        public void Rotate(float angle, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void RotateAt(float angle, System.Drawing.PointF point) { }
        public void RotateAt(float angle, System.Drawing.PointF point, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void Scale(float scaleX, float scaleY) { }
        public void Scale(float scaleX, float scaleY, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void Shear(float shearX, float shearY) { }
        public void Shear(float shearX, float shearY, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void TransformPoints(System.Drawing.PointF[] pts) { }
        public void TransformPoints(System.Drawing.Point[] pts) { }
        public void TransformVectors(System.Drawing.PointF[] pts) { }
        public void TransformVectors(System.Drawing.Point[] pts) { }
        public void Translate(float offsetX, float offsetY) { }
        public void Translate(float offsetX, float offsetY, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void VectorTransformPoints(System.Drawing.Point[] pts) { }
    }
    public enum MatrixOrder
    {
        Append = 1,
        Prepend = 0,
    }
    public sealed partial class PathData
    {
        public PathData() { }
        public System.Drawing.PointF[] Points { get { throw null; } set { } }
        public byte[] Types { get { throw null; } set { } }
    }
    [System.MonoTODOAttribute("libgdiplus/cairo doesn't support path gradients - unless it can be mapped to a radial gradient")]
    public sealed partial class PathGradientBrush : System.Drawing.Brush
    {
        public PathGradientBrush(System.Drawing.Drawing2D.GraphicsPath path) { }
        public PathGradientBrush(System.Drawing.PointF[] points) { }
        public PathGradientBrush(System.Drawing.PointF[] points, System.Drawing.Drawing2D.WrapMode wrapMode) { }
        public PathGradientBrush(System.Drawing.Point[] points) { }
        public PathGradientBrush(System.Drawing.Point[] points, System.Drawing.Drawing2D.WrapMode wrapMode) { }
        public System.Drawing.Drawing2D.Blend Blend { get { throw null; } set { } }
        public System.Drawing.Color CenterColor { get { throw null; } set { } }
        public System.Drawing.PointF CenterPoint { get { throw null; } set { } }
        public System.Drawing.PointF FocusScales { get { throw null; } set { } }
        public System.Drawing.Drawing2D.ColorBlend InterpolationColors { get { throw null; } set { } }
        public System.Drawing.RectangleF Rectangle { get { throw null; } }
        public System.Drawing.Color[] SurroundColors { get { throw null; } set { } }
        public System.Drawing.Drawing2D.Matrix Transform { get { throw null; } set { } }
        public System.Drawing.Drawing2D.WrapMode WrapMode { get { throw null; } set { } }
        public override object Clone() { throw null; }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix) { }
        public void MultiplyTransform(System.Drawing.Drawing2D.Matrix matrix, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ResetTransform() { }
        public void RotateTransform(float angle) { }
        public void RotateTransform(float angle, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void ScaleTransform(float sx, float sy) { }
        public void ScaleTransform(float sx, float sy, System.Drawing.Drawing2D.MatrixOrder order) { }
        public void SetBlendTriangularShape(float focus) { }
        public void SetBlendTriangularShape(float focus, float scale) { }
        public void SetSigmaBellShape(float focus) { }
        public void SetSigmaBellShape(float focus, float scale) { }
        public void TranslateTransform(float dx, float dy) { }
        public void TranslateTransform(float dx, float dy, System.Drawing.Drawing2D.MatrixOrder order) { }
    }
    public enum PathPointType
    {
        Bezier = 3,
        Bezier3 = 3,
        CloseSubpath = 128,
        DashMode = 16,
        Line = 1,
        PathMarker = 32,
        PathTypeMask = 7,
        Start = 0,
    }
    public enum PenAlignment
    {
        Center = 0,
        Inset = 1,
        Left = 3,
        Outset = 2,
        Right = 4,
    }
    public enum PenType
    {
        HatchFill = 1,
        LinearGradient = 4,
        PathGradient = 3,
        SolidColor = 0,
        TextureFill = 2,
    }
    public enum PixelOffsetMode
    {
        Default = 0,
        Half = 4,
        HighQuality = 2,
        HighSpeed = 1,
        Invalid = -1,
        None = 3,
    }
    public enum QualityMode
    {
        Default = 0,
        High = 2,
        Invalid = -1,
        Low = 1,
    }
    public sealed partial class RegionData
    {
        internal RegionData() { }
        public byte[] Data { get { throw null; } set { } }
    }
    public enum SmoothingMode
    {
        AntiAlias = 4,
        Default = 0,
        HighQuality = 2,
        HighSpeed = 1,
        Invalid = -1,
        None = 3,
    }
    public enum WarpMode
    {
        Bilinear = 1,
        Perspective = 0,
    }
    public enum WrapMode
    {
        Clamp = 4,
        Tile = 0,
        TileFlipX = 1,
        TileFlipXY = 3,
        TileFlipY = 2,
    }
}
namespace System.Drawing.Imaging
{
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class BitmapData
    {
        public BitmapData() { }
        public int Height { get { throw null; } set { } }
        public System.Drawing.Imaging.PixelFormat PixelFormat { get { throw null; } set { } }
        public int Reserved { get { throw null; } set { } }
        public System.IntPtr Scan0 { get { throw null; } set { } }
        public int Stride { get { throw null; } set { } }
        public int Width { get { throw null; } set { } }
    }
    public enum ColorAdjustType
    {
        Any = 6,
        Bitmap = 1,
        Brush = 2,
        Count = 5,
        Default = 0,
        Pen = 3,
        Text = 4,
    }
    public enum ColorChannelFlag
    {
        ColorChannelC = 0,
        ColorChannelK = 3,
        ColorChannelLast = 4,
        ColorChannelM = 1,
        ColorChannelY = 2,
    }
    public sealed partial class ColorMap
    {
        public ColorMap() { }
        public System.Drawing.Color NewColor { get { throw null; } set { } }
        public System.Drawing.Color OldColor { get { throw null; } set { } }
    }
    public enum ColorMapType
    {
        Brush = 1,
        Default = 0,
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class ColorMatrix
    {
        public ColorMatrix() { }
        [System.CLSCompliantAttribute(false)]
        public ColorMatrix(float[][] newColorMatrix) { }
        public float this[int row, int column] { get { throw null; } set { } }
        public float Matrix00 { get { throw null; } set { } }
        public float Matrix01 { get { throw null; } set { } }
        public float Matrix02 { get { throw null; } set { } }
        public float Matrix03 { get { throw null; } set { } }
        public float Matrix04 { get { throw null; } set { } }
        public float Matrix10 { get { throw null; } set { } }
        public float Matrix11 { get { throw null; } set { } }
        public float Matrix12 { get { throw null; } set { } }
        public float Matrix13 { get { throw null; } set { } }
        public float Matrix14 { get { throw null; } set { } }
        public float Matrix20 { get { throw null; } set { } }
        public float Matrix21 { get { throw null; } set { } }
        public float Matrix22 { get { throw null; } set { } }
        public float Matrix23 { get { throw null; } set { } }
        public float Matrix24 { get { throw null; } set { } }
        public float Matrix30 { get { throw null; } set { } }
        public float Matrix31 { get { throw null; } set { } }
        public float Matrix32 { get { throw null; } set { } }
        public float Matrix33 { get { throw null; } set { } }
        public float Matrix34 { get { throw null; } set { } }
        public float Matrix40 { get { throw null; } set { } }
        public float Matrix41 { get { throw null; } set { } }
        public float Matrix42 { get { throw null; } set { } }
        public float Matrix43 { get { throw null; } set { } }
        public float Matrix44 { get { throw null; } set { } }
    }
    public enum ColorMatrixFlag
    {
        AltGrays = 2,
        Default = 0,
        SkipGrays = 1,
    }
    public enum ColorMode
    {
        Argb32Mode = 0,
        Argb64Mode = 1,
    }
    public sealed partial class ColorPalette
    {
        internal ColorPalette() { }
        public System.Drawing.Color[] Entries { get { throw null; } }
        public int Flags { get { throw null; } }
    }
    public enum EmfPlusRecordType
    {
        BeginContainer = 16423,
        BeginContainerNoParams = 16424,
        Clear = 16393,
        Comment = 16387,
        DrawArc = 16402,
        DrawBeziers = 16409,
        DrawClosedCurve = 16407,
        DrawCurve = 16408,
        DrawDriverString = 16438,
        DrawEllipse = 16399,
        DrawImage = 16410,
        DrawImagePoints = 16411,
        DrawLines = 16397,
        DrawPath = 16405,
        DrawPie = 16401,
        DrawRects = 16395,
        DrawString = 16412,
        EmfAbortPath = 68,
        EmfAlphaBlend = 114,
        EmfAngleArc = 41,
        EmfArcTo = 55,
        EmfBeginPath = 59,
        EmfBitBlt = 76,
        EmfChord = 46,
        EmfCloseFigure = 61,
        EmfColorCorrectPalette = 111,
        EmfColorMatchToTargetW = 121,
        EmfCreateBrushIndirect = 39,
        EmfCreateColorSpace = 99,
        EmfCreateColorSpaceW = 122,
        EmfCreateDibPatternBrushPt = 94,
        EmfCreateMonoBrush = 93,
        EmfCreatePalette = 49,
        EmfCreatePen = 38,
        EmfDeleteColorSpace = 101,
        EmfDeleteObject = 40,
        EmfDrawEscape = 105,
        EmfEllipse = 42,
        EmfEndPath = 60,
        EmfEof = 14,
        EmfExcludeClipRect = 29,
        EmfExtCreateFontIndirect = 82,
        EmfExtCreatePen = 95,
        EmfExtEscape = 106,
        EmfExtFloodFill = 53,
        EmfExtSelectClipRgn = 75,
        EmfExtTextOutA = 83,
        EmfExtTextOutW = 84,
        EmfFillPath = 62,
        EmfFillRgn = 71,
        EmfFlattenPath = 65,
        EmfForceUfiMapping = 109,
        EmfFrameRgn = 72,
        EmfGdiComment = 70,
        EmfGlsBoundedRecord = 103,
        EmfGlsRecord = 102,
        EmfGradientFill = 118,
        EmfHeader = 1,
        EmfIntersectClipRect = 30,
        EmfInvertRgn = 73,
        EmfLineTo = 54,
        EmfMaskBlt = 78,
        EmfMax = 122,
        EmfMin = 1,
        EmfModifyWorldTransform = 36,
        EmfMoveToEx = 27,
        EmfNamedEscpae = 110,
        EmfOffsetClipRgn = 26,
        EmfPaintRgn = 74,
        EmfPie = 47,
        EmfPixelFormat = 104,
        EmfPlgBlt = 79,
        EmfPlusRecordBase = 16384,
        EmfPolyBezier = 2,
        EmfPolyBezier16 = 85,
        EmfPolyBezierTo = 5,
        EmfPolyBezierTo16 = 88,
        EmfPolyDraw = 56,
        EmfPolyDraw16 = 92,
        EmfPolygon = 3,
        EmfPolygon16 = 86,
        EmfPolyline = 4,
        EmfPolyline16 = 87,
        EmfPolyLineTo = 6,
        EmfPolylineTo16 = 89,
        EmfPolyPolygon = 8,
        EmfPolyPolygon16 = 91,
        EmfPolyPolyline = 7,
        EmfPolyPolyline16 = 90,
        EmfPolyTextOutA = 96,
        EmfPolyTextOutW = 97,
        EmfRealizePalette = 52,
        EmfRectangle = 43,
        EmfReserved069 = 69,
        EmfReserved117 = 117,
        EmfResizePalette = 51,
        EmfRestoreDC = 34,
        EmfRoundArc = 45,
        EmfRoundRect = 44,
        EmfSaveDC = 33,
        EmfScaleViewportExtEx = 31,
        EmfScaleWindowExtEx = 32,
        EmfSelectClipPath = 67,
        EmfSelectObject = 37,
        EmfSelectPalette = 48,
        EmfSetArcDirection = 57,
        EmfSetBkColor = 25,
        EmfSetBkMode = 18,
        EmfSetBrushOrgEx = 13,
        EmfSetColorAdjustment = 23,
        EmfSetColorSpace = 100,
        EmfSetDIBitsToDevice = 80,
        EmfSetIcmMode = 98,
        EmfSetIcmProfileA = 112,
        EmfSetIcmProfileW = 113,
        EmfSetLayout = 115,
        EmfSetLinkedUfis = 119,
        EmfSetMapMode = 17,
        EmfSetMapperFlags = 16,
        EmfSetMetaRgn = 28,
        EmfSetMiterLimit = 58,
        EmfSetPaletteEntries = 50,
        EmfSetPixelV = 15,
        EmfSetPolyFillMode = 19,
        EmfSetROP2 = 20,
        EmfSetStretchBltMode = 21,
        EmfSetTextAlign = 22,
        EmfSetTextColor = 24,
        EmfSetTextJustification = 120,
        EmfSetViewportExtEx = 11,
        EmfSetViewportOrgEx = 12,
        EmfSetWindowExtEx = 9,
        EmfSetWindowOrgEx = 10,
        EmfSetWorldTransform = 35,
        EmfSmallTextOut = 108,
        EmfStartDoc = 107,
        EmfStretchBlt = 77,
        EmfStretchDIBits = 81,
        EmfStrokeAndFillPath = 63,
        EmfStrokePath = 64,
        EmfTransparentBlt = 116,
        EmfWidenPath = 66,
        EndContainer = 16425,
        EndOfFile = 16386,
        FillClosedCurve = 16406,
        FillEllipse = 16398,
        FillPath = 16404,
        FillPie = 16400,
        FillPolygon = 16396,
        FillRects = 16394,
        FillRegion = 16403,
        GetDC = 16388,
        Header = 16385,
        Invalid = 16384,
        Max = 16438,
        Min = 16385,
        MultiFormatEnd = 16391,
        MultiFormatSection = 16390,
        MultiFormatStart = 16389,
        MultiplyWorldTransform = 16428,
        Object = 16392,
        OffsetClip = 16437,
        ResetClip = 16433,
        ResetWorldTransform = 16427,
        Restore = 16422,
        RotateWorldTransform = 16431,
        Save = 16421,
        ScaleWorldTransform = 16430,
        SetAntiAliasMode = 16414,
        SetClipPath = 16435,
        SetClipRect = 16434,
        SetClipRegion = 16436,
        SetCompositingMode = 16419,
        SetCompositingQuality = 16420,
        SetInterpolationMode = 16417,
        SetPageTransform = 16432,
        SetPixelOffsetMode = 16418,
        SetRenderingOrigin = 16413,
        SetTextContrast = 16416,
        SetTextRenderingHint = 16415,
        SetWorldTransform = 16426,
        Total = 16439,
        TranslateWorldTransform = 16429,
        WmfAnimatePalette = 66614,
        WmfArc = 67607,
        WmfBitBlt = 67874,
        WmfChord = 67632,
        WmfCreateBrushIndirect = 66300,
        WmfCreateFontIndirect = 66299,
        WmfCreatePalette = 65783,
        WmfCreatePatternBrush = 66041,
        WmfCreatePenIndirect = 66298,
        WmfCreateRegion = 67327,
        WmfDeleteObject = 66032,
        WmfDibBitBlt = 67904,
        WmfDibCreatePatternBrush = 65858,
        WmfDibStretchBlt = 68417,
        WmfEllipse = 66584,
        WmfEscape = 67110,
        WmfExcludeClipRect = 66581,
        WmfExtFloodFill = 66888,
        WmfExtTextOut = 68146,
        WmfFillRegion = 66088,
        WmfFloodFill = 66585,
        WmfFrameRegion = 66601,
        WmfIntersectClipRect = 66582,
        WmfInvertRegion = 65834,
        WmfLineTo = 66067,
        WmfMoveTo = 66068,
        WmfOffsetCilpRgn = 66080,
        WmfOffsetViewportOrg = 66065,
        WmfOffsetWindowOrg = 66063,
        WmfPaintRegion = 65835,
        WmfPatBlt = 67101,
        WmfPie = 67610,
        WmfPolygon = 66340,
        WmfPolyline = 66341,
        WmfPolyPolygon = 66872,
        WmfRealizePalette = 65589,
        WmfRecordBase = 65536,
        WmfRectangle = 66587,
        WmfResizePalette = 65849,
        WmfRestoreDC = 65831,
        WmfRoundRect = 67100,
        WmfSaveDC = 65566,
        WmfScaleViewportExt = 66578,
        WmfScaleWindowExt = 66576,
        WmfSelectClipRegion = 65836,
        WmfSelectObject = 65837,
        WmfSelectPalette = 66100,
        WmfSetBkColor = 66049,
        WmfSetBkMode = 65794,
        WmfSetDibToDev = 68915,
        WmfSetLayout = 65865,
        WmfSetMapMode = 65795,
        WmfSetMapperFlags = 66097,
        WmfSetPalEntries = 65591,
        WmfSetPixel = 66591,
        WmfSetPolyFillMode = 65798,
        WmfSetRelAbs = 65797,
        WmfSetROP2 = 65796,
        WmfSetStretchBltMode = 65799,
        WmfSetTextAlign = 65838,
        WmfSetTextCharExtra = 65800,
        WmfSetTextColor = 66057,
        WmfSetTextJustification = 66058,
        WmfSetViewportExt = 66062,
        WmfSetViewportOrg = 66061,
        WmfSetWindowExt = 66060,
        WmfSetWindowOrg = 66059,
        WmfStretchBlt = 68387,
        WmfStretchDib = 69443,
        WmfTextOut = 66849,
    }
    public enum EmfType
    {
        EmfOnly = 3,
        EmfPlusDual = 5,
        EmfPlusOnly = 4,
    }
    public sealed partial class Encoder
    {
        public static readonly System.Drawing.Imaging.Encoder ChrominanceTable;
        public static readonly System.Drawing.Imaging.Encoder ColorDepth;
        public static readonly System.Drawing.Imaging.Encoder Compression;
        public static readonly System.Drawing.Imaging.Encoder LuminanceTable;
        public static readonly System.Drawing.Imaging.Encoder Quality;
        public static readonly System.Drawing.Imaging.Encoder RenderMethod;
        public static readonly System.Drawing.Imaging.Encoder SaveFlag;
        public static readonly System.Drawing.Imaging.Encoder ScanMethod;
        public static readonly System.Drawing.Imaging.Encoder Transformation;
        public static readonly System.Drawing.Imaging.Encoder Version;
        public Encoder(System.Guid guid) { }
        public System.Guid Guid { get { throw null; } }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class EncoderParameter : System.IDisposable
    {
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, byte value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, byte value, bool undefined) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, byte[] value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, byte[] value, bool undefined) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, short value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, short[] value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, int numberValues, System.Drawing.Imaging.EncoderParameterValueType type, System.IntPtr value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, int numerator, int denominator) { }
        [System.ObsoleteAttribute("This constructor has been deprecated. Use EncoderParameter(Encoder encoder, int numberValues, EncoderParameterValueType type, IntPtr value) instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, int NumberOfValues, int Type, int Value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, int numerator1, int demoninator1, int numerator2, int demoninator2) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, int[] numerator, int[] denominator) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, int[] numerator1, int[] denominator1, int[] numerator2, int[] denominator2) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, long value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, long rangebegin, long rangeend) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, long[] value) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, long[] rangebegin, long[] rangeend) { }
        public EncoderParameter(System.Drawing.Imaging.Encoder encoder, string value) { }
        public System.Drawing.Imaging.Encoder Encoder { get { throw null; } set { } }
        public int NumberOfValues { get { throw null; } }
        public System.Drawing.Imaging.EncoderParameterValueType Type { get { throw null; } }
        public System.Drawing.Imaging.EncoderParameterValueType ValueType { get { throw null; } }
        public void Dispose() { }
        ~EncoderParameter() { }
    }
    public sealed partial class EncoderParameters : System.IDisposable
    {
        public EncoderParameters() { }
        public EncoderParameters(int count) { }
        public System.Drawing.Imaging.EncoderParameter[] Param { get { throw null; } set { } }
        public void Dispose() { }
    }
    public enum EncoderParameterValueType
    {
        ValueTypeAscii = 2,
        ValueTypeByte = 1,
        ValueTypeLong = 4,
        ValueTypeLongRange = 6,
        ValueTypeRational = 5,
        ValueTypeRationalRange = 8,
        ValueTypeShort = 3,
        ValueTypeUndefined = 7,
    }
    public enum EncoderValue
    {
        ColorTypeCMYK = 0,
        ColorTypeYCCK = 1,
        CompressionCCITT3 = 3,
        CompressionCCITT4 = 4,
        CompressionLZW = 2,
        CompressionNone = 6,
        CompressionRle = 5,
        Flush = 20,
        FrameDimensionPage = 23,
        FrameDimensionResolution = 22,
        FrameDimensionTime = 21,
        LastFrame = 19,
        MultiFrame = 18,
        RenderNonProgressive = 12,
        RenderProgressive = 11,
        ScanMethodInterlaced = 7,
        ScanMethodNonInterlaced = 8,
        TransformFlipHorizontal = 16,
        TransformFlipVertical = 17,
        TransformRotate180 = 14,
        TransformRotate270 = 15,
        TransformRotate90 = 13,
        VersionGif87 = 9,
        VersionGif89 = 10,
    }
    public sealed partial class FrameDimension
    {
        public FrameDimension(System.Guid guid) { }
        public System.Guid Guid { get { throw null; } }
        public static System.Drawing.Imaging.FrameDimension Page { get { throw null; } }
        public static System.Drawing.Imaging.FrameDimension Resolution { get { throw null; } }
        public static System.Drawing.Imaging.FrameDimension Time { get { throw null; } }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class ImageAttributes : System.ICloneable, System.IDisposable
    {
        public ImageAttributes() { }
        public void ClearBrushRemapTable() { }
        public void ClearColorKey() { }
        public void ClearColorKey(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearColorMatrix() { }
        public void ClearColorMatrix(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearGamma() { }
        public void ClearGamma(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearNoOp() { }
        public void ClearNoOp(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearOutputChannel() { }
        public void ClearOutputChannel(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearOutputChannelColorProfile() { }
        public void ClearOutputChannelColorProfile(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearRemapTable() { }
        public void ClearRemapTable(System.Drawing.Imaging.ColorAdjustType type) { }
        public void ClearThreshold() { }
        public void ClearThreshold(System.Drawing.Imaging.ColorAdjustType type) { }
        public object Clone() { throw null; }
        public void Dispose() { }
        ~ImageAttributes() { }
        public void GetAdjustedPalette(System.Drawing.Imaging.ColorPalette palette, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetBrushRemapTable(System.Drawing.Imaging.ColorMap[] map) { }
        public void SetColorKey(System.Drawing.Color colorLow, System.Drawing.Color colorHigh) { }
        public void SetColorKey(System.Drawing.Color colorLow, System.Drawing.Color colorHigh, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetColorMatrices(System.Drawing.Imaging.ColorMatrix newColorMatrix, System.Drawing.Imaging.ColorMatrix grayMatrix) { }
        public void SetColorMatrices(System.Drawing.Imaging.ColorMatrix newColorMatrix, System.Drawing.Imaging.ColorMatrix grayMatrix, System.Drawing.Imaging.ColorMatrixFlag flags) { }
        public void SetColorMatrices(System.Drawing.Imaging.ColorMatrix newColorMatrix, System.Drawing.Imaging.ColorMatrix grayMatrix, System.Drawing.Imaging.ColorMatrixFlag mode, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetColorMatrix(System.Drawing.Imaging.ColorMatrix newColorMatrix) { }
        public void SetColorMatrix(System.Drawing.Imaging.ColorMatrix newColorMatrix, System.Drawing.Imaging.ColorMatrixFlag flags) { }
        public void SetColorMatrix(System.Drawing.Imaging.ColorMatrix newColorMatrix, System.Drawing.Imaging.ColorMatrixFlag mode, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetGamma(float gamma) { }
        public void SetGamma(float gamma, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetNoOp() { }
        public void SetNoOp(System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag flags) { }
        public void SetOutputChannel(System.Drawing.Imaging.ColorChannelFlag flags, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetOutputChannelColorProfile(string colorProfileFilename) { }
        public void SetOutputChannelColorProfile(string colorProfileFilename, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetRemapTable(System.Drawing.Imaging.ColorMap[] map) { }
        public void SetRemapTable(System.Drawing.Imaging.ColorMap[] map, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetThreshold(float threshold) { }
        public void SetThreshold(float threshold, System.Drawing.Imaging.ColorAdjustType type) { }
        public void SetWrapMode(System.Drawing.Drawing2D.WrapMode mode) { }
        public void SetWrapMode(System.Drawing.Drawing2D.WrapMode mode, System.Drawing.Color color) { }
        public void SetWrapMode(System.Drawing.Drawing2D.WrapMode mode, System.Drawing.Color color, bool clamp) { }
    }
    [System.FlagsAttribute]
    public enum ImageCodecFlags
    {
        BlockingDecode = 32,
        Builtin = 65536,
        Decoder = 2,
        Encoder = 1,
        SeekableEncode = 16,
        SupportBitmap = 4,
        SupportVector = 8,
        System = 131072,
        User = 262144,
    }
    public sealed partial class ImageCodecInfo
    {
        internal ImageCodecInfo() { }
        public System.Guid Clsid { get { throw null; } set { } }
        public string CodecName { get { throw null; } set { } }
        public string DllName { get { throw null; } set { } }
        public string FilenameExtension { get { throw null; } set { } }
        public System.Drawing.Imaging.ImageCodecFlags Flags { get { throw null; } set { } }
        public string FormatDescription { get { throw null; } set { } }
        public System.Guid FormatID { get { throw null; } set { } }
        public string MimeType { get { throw null; } set { } }
        [System.CLSCompliantAttribute(false)]
        public byte[][] SignatureMasks { get { throw null; } set { } }
        [System.CLSCompliantAttribute(false)]
        public byte[][] SignaturePatterns { get { throw null; } set { } }
        public int Version { get { throw null; } set { } }
        public static System.Drawing.Imaging.ImageCodecInfo[] GetImageDecoders() { throw null; }
        public static System.Drawing.Imaging.ImageCodecInfo[] GetImageEncoders() { throw null; }
    }
    [System.FlagsAttribute]
    public enum ImageFlags
    {
        Caching = 131072,
        ColorSpaceCmyk = 32,
        ColorSpaceGray = 64,
        ColorSpaceRgb = 16,
        ColorSpaceYcbcr = 128,
        ColorSpaceYcck = 256,
        HasAlpha = 2,
        HasRealDpi = 4096,
        HasRealPixelSize = 8192,
        HasTranslucent = 4,
        None = 0,
        PartiallyScalable = 8,
        ReadOnly = 65536,
        Scalable = 1,
    }
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.ImageFormatConverter))]
    public sealed partial class ImageFormat
    {
        public ImageFormat(System.Guid guid) { }
        public static System.Drawing.Imaging.ImageFormat Bmp { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Emf { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Exif { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Gif { get { throw null; } }
        public System.Guid Guid { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Icon { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Jpeg { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat MemoryBmp { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Png { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Tiff { get { throw null; } }
        public static System.Drawing.Imaging.ImageFormat Wmf { get { throw null; } }
        public override bool Equals(object o) { throw null; }
        public override int GetHashCode() { throw null; }
        public override string ToString() { throw null; }
    }
    public enum ImageLockMode
    {
        ReadOnly = 1,
        ReadWrite = 3,
        UserInputBuffer = 4,
        WriteOnly = 2,
    }
    [System.ComponentModel.EditorAttribute("System.Drawing.Design.MetafileEditor, System.Drawing.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))]
    [System.MonoTODOAttribute("Metafiles, both WMF and EMF formats, are only partially supported.")]
    [System.SerializableAttribute]
    public sealed partial class Metafile : System.Drawing.Image
    {
        public Metafile(System.IntPtr henhmetafile, bool deleteEmf) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.Imaging.EmfType emfType) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.Imaging.EmfType emfType, string description) { }
        public Metafile(System.IntPtr hmetafile, System.Drawing.Imaging.WmfPlaceableFileHeader wmfHeader) { }
        public Metafile(System.IntPtr hmetafile, System.Drawing.Imaging.WmfPlaceableFileHeader wmfHeader, bool deleteWmf) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type, string desc) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type) { }
        public Metafile(System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(System.IO.Stream stream) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.Imaging.EmfType type) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type) { }
        public Metafile(System.IO.Stream stream, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(string filename) { }
        public Metafile(string fileName, System.IntPtr referenceHdc) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Imaging.EmfType type) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.Rectangle frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, string description) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, System.Drawing.Imaging.EmfType type, string description) { }
        public Metafile(string fileName, System.IntPtr referenceHdc, System.Drawing.RectangleF frameRect, System.Drawing.Imaging.MetafileFrameUnit frameUnit, string desc) { }
        protected override void Dispose(bool disposing) { }
        public System.IntPtr GetHenhmetafile() { throw null; }
        [System.MonoLimitationAttribute("Metafiles aren't only partially supported by libgdiplus.")]
        public System.Drawing.Imaging.MetafileHeader GetMetafileHeader() { throw null; }
        [System.MonoLimitationAttribute("Metafiles aren't only partially supported by libgdiplus.")]
        public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader(System.IntPtr henhmetafile) { throw null; }
        [System.MonoLimitationAttribute("Metafiles aren't only partially supported by libgdiplus.")]
        public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader(System.IntPtr hmetafile, System.Drawing.Imaging.WmfPlaceableFileHeader wmfHeader) { throw null; }
        [System.MonoLimitationAttribute("Metafiles aren't only partially supported by libgdiplus.")]
        public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader(System.IO.Stream stream) { throw null; }
        [System.MonoLimitationAttribute("Metafiles aren't only partially supported by libgdiplus.")]
        public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader(string fileName) { throw null; }
        [System.MonoLimitationAttribute("Metafiles aren't only partially supported by libgdiplus.")]
        public void PlayRecord(System.Drawing.Imaging.EmfPlusRecordType recordType, int flags, int dataSize, byte[] data) { }
    }
    public enum MetafileFrameUnit
    {
        Document = 5,
        GdiCompatible = 7,
        Inch = 4,
        Millimeter = 6,
        Pixel = 2,
        Point = 3,
    }
    [System.MonoTODOAttribute("Metafiles, both WMF and EMF formats, aren't supported.")]
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class MetafileHeader
    {
        internal MetafileHeader() { }
        public System.Drawing.Rectangle Bounds { get { throw null; } }
        public float DpiX { get { throw null; } }
        public float DpiY { get { throw null; } }
        public int EmfPlusHeaderSize { get { throw null; } }
        public int LogicalDpiX { get { throw null; } }
        public int LogicalDpiY { get { throw null; } }
        public int MetafileSize { get { throw null; } }
        public System.Drawing.Imaging.MetafileType Type { get { throw null; } }
        public int Version { get { throw null; } }
        public System.Drawing.Imaging.MetaHeader WmfHeader { get { throw null; } }
        [System.MonoTODOAttribute("always returns false")]
        public bool IsDisplay() { throw null; }
        public bool IsEmf() { throw null; }
        public bool IsEmfOrEmfPlus() { throw null; }
        public bool IsEmfPlus() { throw null; }
        public bool IsEmfPlusDual() { throw null; }
        public bool IsEmfPlusOnly() { throw null; }
        public bool IsWmf() { throw null; }
        public bool IsWmfPlaceable() { throw null; }
    }
    public enum MetafileType
    {
        Emf = 3,
        EmfPlusDual = 5,
        EmfPlusOnly = 4,
        Invalid = 0,
        Wmf = 1,
        WmfPlaceable = 2,
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class MetaHeader
    {
        public MetaHeader() { }
        public short HeaderSize { get { throw null; } set { } }
        public int MaxRecord { get { throw null; } set { } }
        public short NoObjects { get { throw null; } set { } }
        public short NoParameters { get { throw null; } set { } }
        public int Size { get { throw null; } set { } }
        public short Type { get { throw null; } set { } }
        public short Version { get { throw null; } set { } }
    }
    [System.FlagsAttribute]
    public enum PaletteFlags
    {
        GrayScale = 2,
        Halftone = 4,
        HasAlpha = 1,
    }
    public enum PixelFormat
    {
        Alpha = 262144,
        Canonical = 2097152,
        DontCare = 0,
        Extended = 1048576,
        Format16bppArgb1555 = 397319,
        Format16bppGrayScale = 1052676,
        Format16bppRgb555 = 135173,
        Format16bppRgb565 = 135174,
        Format1bppIndexed = 196865,
        Format24bppRgb = 137224,
        Format32bppArgb = 2498570,
        Format32bppPArgb = 925707,
        Format32bppRgb = 139273,
        Format48bppRgb = 1060876,
        Format4bppIndexed = 197634,
        Format64bppArgb = 3424269,
        Format64bppPArgb = 1851406,
        Format8bppIndexed = 198659,
        Gdi = 131072,
        Indexed = 65536,
        Max = 15,
        PAlpha = 524288,
        Undefined = 0,
    }
    public delegate void PlayRecordCallback(System.Drawing.Imaging.EmfPlusRecordType recordType, int flags, int dataSize, System.IntPtr recordData);
    public sealed partial class PropertyItem
    {
        internal PropertyItem() { }
        public int Id { get { throw null; } set { } }
        public int Len { get { throw null; } set { } }
        public short Type { get { throw null; } set { } }
        public byte[] Value { get { throw null; } set { } }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public sealed partial class WmfPlaceableFileHeader
    {
        public WmfPlaceableFileHeader() { }
        public short BboxBottom { get { throw null; } set { } }
        public short BboxLeft { get { throw null; } set { } }
        public short BboxRight { get { throw null; } set { } }
        public short BboxTop { get { throw null; } set { } }
        public short Checksum { get { throw null; } set { } }
        public short Hmf { get { throw null; } set { } }
        public short Inch { get { throw null; } set { } }
        public int Key { get { throw null; } set { } }
        public int Reserved { get { throw null; } set { } }
    }
}
namespace System.Drawing.Printing
{
    public enum Duplex
    {
        Default = -1,
        Horizontal = 3,
        Simplex = 1,
        Vertical = 2,
    }
    [System.SerializableAttribute]
    public partial class InvalidPrinterException : System.SystemException
    {
        public InvalidPrinterException(System.Drawing.Printing.PrinterSettings settings) { }
        protected InvalidPrinterException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
        public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
    }
    [System.ComponentModel.TypeConverterAttribute(typeof(System.Drawing.Printing.MarginsConverter))]
    [System.SerializableAttribute]
    public partial class Margins : System.ICloneable
    {
        public Margins() { }
        public Margins(int left, int right, int top, int bottom) { }
        public int Bottom { get { throw null; } set { } }
        public int Left { get { throw null; } set { } }
        public int Right { get { throw null; } set { } }
        public int Top { get { throw null; } set { } }
        public object Clone() { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static bool operator ==(System.Drawing.Printing.Margins m1, System.Drawing.Printing.Margins m2) { throw null; }
        public static bool operator !=(System.Drawing.Printing.Margins m1, System.Drawing.Printing.Margins m2) { throw null; }
        public override string ToString() { throw null; }
    }
    public partial class MarginsConverter : System.ComponentModel.ExpandableObjectConverter
    {
        public MarginsConverter() { }
        public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Type sourceType) { throw null; }
        public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
        public override object ConvertFrom(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value) { throw null; }
        public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
        public override object CreateInstance(System.ComponentModel.ITypeDescriptorContext context, System.Collections.IDictionary propertyValues) { throw null; }
        public override bool GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext context) { throw null; }
    }
    [System.SerializableAttribute]
    public partial class PageSettings : System.ICloneable
    {
        public PageSettings() { }
        public PageSettings(System.Drawing.Printing.PrinterSettings printerSettings) { }
        public System.Drawing.Rectangle Bounds { get { throw null; } }
        public bool Color { get { throw null; } set { } }
        public float HardMarginX { get { throw null; } }
        public float HardMarginY { get { throw null; } }
        public bool Landscape { get { throw null; } set { } }
        public System.Drawing.Printing.Margins Margins { get { throw null; } set { } }
        public System.Drawing.Printing.PaperSize PaperSize { get { throw null; } set { } }
        public System.Drawing.Printing.PaperSource PaperSource { get { throw null; } set { } }
        public System.Drawing.RectangleF PrintableArea { get { throw null; } }
        public System.Drawing.Printing.PrinterResolution PrinterResolution { get { throw null; } set { } }
        public System.Drawing.Printing.PrinterSettings PrinterSettings { get { throw null; } set { } }
        public object Clone() { throw null; }
        [System.MonoTODOAttribute("PageSettings.CopyToHdevmode")]
        public void CopyToHdevmode(System.IntPtr hdevmode) { }
        [System.MonoTODOAttribute("PageSettings.SetHdevmode")]
        public void SetHdevmode(System.IntPtr hdevmode) { }
        public override string ToString() { throw null; }
    }
    public enum PaperKind
    {
        A2 = 66,
        A3 = 8,
        A3Extra = 63,
        A3ExtraTransverse = 68,
        A3Rotated = 76,
        A3Transverse = 67,
        A4 = 9,
        A4Extra = 53,
        A4Plus = 60,
        A4Rotated = 77,
        A4Small = 10,
        A4Transverse = 55,
        A5 = 11,
        A5Extra = 64,
        A5Rotated = 78,
        A5Transverse = 61,
        A6 = 70,
        A6Rotated = 83,
        APlus = 57,
        B4 = 12,
        B4Envelope = 33,
        B4JisRotated = 79,
        B5 = 13,
        B5Envelope = 34,
        B5Extra = 65,
        B5JisRotated = 80,
        B5Transverse = 62,
        B6Envelope = 35,
        B6Jis = 88,
        B6JisRotated = 89,
        BPlus = 58,
        C3Envelope = 29,
        C4Envelope = 30,
        C5Envelope = 28,
        C65Envelope = 32,
        C6Envelope = 31,
        CSheet = 24,
        Custom = 0,
        DLEnvelope = 27,
        DSheet = 25,
        ESheet = 26,
        Executive = 7,
        Folio = 14,
        GermanLegalFanfold = 41,
        GermanStandardFanfold = 40,
        InviteEnvelope = 47,
        IsoB4 = 42,
        ItalyEnvelope = 36,
        JapaneseDoublePostcard = 69,
        JapaneseDoublePostcardRotated = 82,
        JapaneseEnvelopeChouNumber3 = 73,
        JapaneseEnvelopeChouNumber3Rotated = 86,
        JapaneseEnvelopeChouNumber4 = 74,
        JapaneseEnvelopeChouNumber4Rotated = 87,
        JapaneseEnvelopeKakuNumber2 = 71,
        JapaneseEnvelopeKakuNumber2Rotated = 84,
        JapaneseEnvelopeKakuNumber3 = 72,
        JapaneseEnvelopeKakuNumber3Rotated = 85,
        JapaneseEnvelopeYouNumber4 = 91,
        JapaneseEnvelopeYouNumber4Rotated = 92,
        JapanesePostcard = 43,
        JapanesePostcardRotated = 81,
        Ledger = 4,
        Legal = 5,
        LegalExtra = 51,
        Letter = 1,
        LetterExtra = 50,
        LetterExtraTransverse = 56,
        LetterPlus = 59,
        LetterRotated = 75,
        LetterSmall = 2,
        LetterTransverse = 54,
        MonarchEnvelope = 37,
        Note = 18,
        Number10Envelope = 20,
        Number11Envelope = 21,
        Number12Envelope = 22,
        Number14Envelope = 23,
        Number9Envelope = 19,
        PersonalEnvelope = 38,
        Prc16K = 93,
        Prc16KRotated = 106,
        Prc32K = 94,
        Prc32KBig = 95,
        Prc32KBigRotated = 108,
        Prc32KRotated = 107,
        PrcEnvelopeNumber1 = 96,
        PrcEnvelopeNumber10 = 105,
        PrcEnvelopeNumber10Rotated = 118,
        PrcEnvelopeNumber1Rotated = 109,
        PrcEnvelopeNumber2 = 97,
        PrcEnvelopeNumber2Rotated = 110,
        PrcEnvelopeNumber3 = 98,
        PrcEnvelopeNumber3Rotated = 111,
        PrcEnvelopeNumber4 = 99,
        PrcEnvelopeNumber4Rotated = 112,
        PrcEnvelopeNumber5 = 100,
        PrcEnvelopeNumber5Rotated = 113,
        PrcEnvelopeNumber6 = 101,
        PrcEnvelopeNumber6Rotated = 114,
        PrcEnvelopeNumber7 = 102,
        PrcEnvelopeNumber7Rotated = 115,
        PrcEnvelopeNumber8 = 103,
        PrcEnvelopeNumber8Rotated = 116,
        PrcEnvelopeNumber9 = 104,
        PrcEnvelopeNumber9Rotated = 117,
        Quarto = 15,
        Standard10x11 = 45,
        Standard10x14 = 16,
        Standard11x17 = 17,
        Standard12x11 = 90,
        Standard15x11 = 46,
        Standard9x11 = 44,
        Statement = 6,
        Tabloid = 3,
        TabloidExtra = 52,
        USStandardFanfold = 39,
    }
    [System.SerializableAttribute]
    public partial class PaperSize
    {
        public PaperSize() { }
        public PaperSize(string name, int width, int height) { }
        public int Height { get { throw null; } set { } }
        public System.Drawing.Printing.PaperKind Kind { get { throw null; } }
        public string PaperName { get { throw null; } set { } }
        public int RawKind { get { throw null; } set { } }
        public int Width { get { throw null; } set { } }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class PaperSource
    {
        public PaperSource() { }
        public System.Drawing.Printing.PaperSourceKind Kind { get { throw null; } }
        public int RawKind { get { throw null; } set { } }
        public string SourceName { get { throw null; } set { } }
        public override string ToString() { throw null; }
    }
    public enum PaperSourceKind
    {
        AutomaticFeed = 7,
        Cassette = 14,
        Custom = 257,
        Envelope = 5,
        FormSource = 15,
        LargeCapacity = 11,
        LargeFormat = 10,
        Lower = 2,
        Manual = 4,
        ManualFeed = 6,
        Middle = 3,
        SmallFormat = 9,
        TractorFeed = 8,
        Upper = 1,
    }
    public sealed partial class PreviewPageInfo
    {
        public PreviewPageInfo(System.Drawing.Image image, System.Drawing.Size physicalSize) { }
        public System.Drawing.Image Image { get { throw null; } }
        public System.Drawing.Size PhysicalSize { get { throw null; } }
    }
    public partial class PreviewPrintController : System.Drawing.Printing.PrintController
    {
        public PreviewPrintController() { }
        public override bool IsPreview { get { throw null; } }
        public virtual bool UseAntiAlias { get { throw null; } set { } }
        public System.Drawing.Printing.PreviewPageInfo[] GetPreviewPageInfo() { throw null; }
        [System.MonoTODOAttribute]
        public override void OnEndPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { }
        [System.MonoTODOAttribute]
        public override void OnEndPrint(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e) { }
        [System.MonoTODOAttribute]
        public override System.Drawing.Graphics OnStartPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { throw null; }
        [System.MonoTODOAttribute]
        public override void OnStartPrint(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e) { }
    }
    public enum PrintAction
    {
        PrintToFile = 0,
        PrintToPreview = 1,
        PrintToPrinter = 2,
    }
    public abstract partial class PrintController
    {
        protected PrintController() { }
        public virtual bool IsPreview { get { throw null; } }
        public virtual void OnEndPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { }
        public virtual void OnEndPrint(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e) { }
        public virtual System.Drawing.Graphics OnStartPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { throw null; }
        public virtual void OnStartPrint(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e) { }
    }
    [System.ComponentModel.DefaultEventAttribute("PrintPage")]
    [System.ComponentModel.DefaultPropertyAttribute("DocumentName")]
    [System.ComponentModel.ToolboxItemFilterAttribute("System.Drawing.Printing", System.ComponentModel.ToolboxItemFilterType.Allow)]
    public partial class PrintDocument : System.ComponentModel.Component
    {
        public PrintDocument() { }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public System.Drawing.Printing.PageSettings DefaultPageSettings { get { throw null; } set { } }
        [System.ComponentModel.DefaultValueAttribute("document")]
        public string DocumentName { get { throw null; } set { } }
        [System.ComponentModel.DefaultValueAttribute(false)]
        public bool OriginAtMargins { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public System.Drawing.Printing.PrintController PrintController { get { throw null; } set { } }
        [System.ComponentModel.BrowsableAttribute(false)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
        public System.Drawing.Printing.PrinterSettings PrinterSettings { get { throw null; } set { } }
        public event System.Drawing.Printing.PrintEventHandler BeginPrint { add { } remove { } }
        public event System.Drawing.Printing.PrintEventHandler EndPrint { add { } remove { } }
        public event System.Drawing.Printing.PrintPageEventHandler PrintPage { add { } remove { } }
        public event System.Drawing.Printing.QueryPageSettingsEventHandler QueryPageSettings { add { } remove { } }
        protected virtual void OnBeginPrint(System.Drawing.Printing.PrintEventArgs e) { }
        protected virtual void OnEndPrint(System.Drawing.Printing.PrintEventArgs e) { }
        protected virtual void OnPrintPage(System.Drawing.Printing.PrintPageEventArgs e) { }
        protected virtual void OnQueryPageSettings(System.Drawing.Printing.QueryPageSettingsEventArgs e) { }
        public void Print() { }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public partial class PrinterResolution
    {
        public PrinterResolution() { }
        public System.Drawing.Printing.PrinterResolutionKind Kind { get { throw null; } set { } }
        public int X { get { throw null; } set { } }
        public int Y { get { throw null; } set { } }
        public override string ToString() { throw null; }
    }
    public enum PrinterResolutionKind
    {
        Custom = 0,
        Draft = -1,
        High = -4,
        Low = -2,
        Medium = -3,
    }
    [System.SerializableAttribute]
    public partial class PrinterSettings : System.ICloneable
    {
        public PrinterSettings() { }
        public bool CanDuplex { get { throw null; } }
        public bool Collate { get { throw null; } set { } }
        public short Copies { get { throw null; } set { } }
        public System.Drawing.Printing.PageSettings DefaultPageSettings { get { throw null; } }
        public System.Drawing.Printing.Duplex Duplex { get { throw null; } set { } }
        public int FromPage { get { throw null; } set { } }
        public static System.Drawing.Printing.PrinterSettings.StringCollection InstalledPrinters { get { throw null; } }
        public bool IsDefaultPrinter { get { throw null; } }
        public bool IsPlotter { get { throw null; } }
        public bool IsValid { get { throw null; } }
        public int LandscapeAngle { get { throw null; } }
        public int MaximumCopies { get { throw null; } }
        public int MaximumPage { get { throw null; } set { } }
        public int MinimumPage { get { throw null; } set { } }
        public System.Drawing.Printing.PrinterSettings.PaperSizeCollection PaperSizes { get { throw null; } }
        public System.Drawing.Printing.PrinterSettings.PaperSourceCollection PaperSources { get { throw null; } }
        public string PrinterName { get { throw null; } set { } }
        public System.Drawing.Printing.PrinterSettings.PrinterResolutionCollection PrinterResolutions { get { throw null; } }
        public string PrintFileName { get { throw null; } set { } }
        public System.Drawing.Printing.PrintRange PrintRange { get { throw null; } set { } }
        public bool PrintToFile { get { throw null; } set { } }
        public bool SupportsColor { get { throw null; } }
        public int ToPage { get { throw null; } set { } }
        public object Clone() { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.CreateMeasurementGraphics")]
        public System.Drawing.Graphics CreateMeasurementGraphics() { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.CreateMeasurementGraphics")]
        public System.Drawing.Graphics CreateMeasurementGraphics(bool honorOriginAtMargins) { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.CreateMeasurementGraphics")]
        public System.Drawing.Graphics CreateMeasurementGraphics(System.Drawing.Printing.PageSettings pageSettings) { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.CreateMeasurementGraphics")]
        public System.Drawing.Graphics CreateMeasurementGraphics(System.Drawing.Printing.PageSettings pageSettings, bool honorOriginAtMargins) { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.GetHdevmode")]
        public System.IntPtr GetHdevmode() { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.GetHdevmode")]
        public System.IntPtr GetHdevmode(System.Drawing.Printing.PageSettings pageSettings) { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.GetHdevname")]
        public System.IntPtr GetHdevnames() { throw null; }
        [System.MonoTODOAttribute("IsDirectPrintingSupported")]
        public bool IsDirectPrintingSupported(System.Drawing.Image image) { throw null; }
        [System.MonoTODOAttribute("IsDirectPrintingSupported")]
        public bool IsDirectPrintingSupported(System.Drawing.Imaging.ImageFormat imageFormat) { throw null; }
        [System.MonoTODOAttribute("PrinterSettings.SetHdevmode")]
        public void SetHdevmode(System.IntPtr hdevmode) { }
        [System.MonoTODOAttribute("PrinterSettings.SetHdevnames")]
        public void SetHdevnames(System.IntPtr hdevnames) { }
        public override string ToString() { throw null; }
        public partial class PaperSizeCollection : System.Collections.ICollection, System.Collections.IEnumerable
        {
            public PaperSizeCollection(System.Drawing.Printing.PaperSize[] array) { }
            public int Count { get { throw null; } }
            public virtual System.Drawing.Printing.PaperSize this[int index] { get { throw null; } }
            int System.Collections.ICollection.Count { get { throw null; } }
            bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
            object System.Collections.ICollection.SyncRoot { get { throw null; } }
            [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
            public int Add(System.Drawing.Printing.PaperSize paperSize) { throw null; }
            public void CopyTo(System.Drawing.Printing.PaperSize[] paperSizes, int index) { }
            public System.Collections.IEnumerator GetEnumerator() { throw null; }
            void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
            System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        }
        public partial class PaperSourceCollection : System.Collections.ICollection, System.Collections.IEnumerable
        {
            public PaperSourceCollection(System.Drawing.Printing.PaperSource[] array) { }
            public int Count { get { throw null; } }
            public virtual System.Drawing.Printing.PaperSource this[int index] { get { throw null; } }
            int System.Collections.ICollection.Count { get { throw null; } }
            bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
            object System.Collections.ICollection.SyncRoot { get { throw null; } }
            [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
            public int Add(System.Drawing.Printing.PaperSource paperSource) { throw null; }
            public void CopyTo(System.Drawing.Printing.PaperSource[] paperSources, int index) { }
            public System.Collections.IEnumerator GetEnumerator() { throw null; }
            void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
            System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        }
        public partial class PrinterResolutionCollection : System.Collections.ICollection, System.Collections.IEnumerable
        {
            public PrinterResolutionCollection(System.Drawing.Printing.PrinterResolution[] array) { }
            public int Count { get { throw null; } }
            public virtual System.Drawing.Printing.PrinterResolution this[int index] { get { throw null; } }
            int System.Collections.ICollection.Count { get { throw null; } }
            bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
            object System.Collections.ICollection.SyncRoot { get { throw null; } }
            [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
            public int Add(System.Drawing.Printing.PrinterResolution printerResolution) { throw null; }
            public void CopyTo(System.Drawing.Printing.PrinterResolution[] printerResolutions, int index) { }
            public System.Collections.IEnumerator GetEnumerator() { throw null; }
            void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
            System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        }
        public partial class StringCollection : System.Collections.ICollection, System.Collections.IEnumerable
        {
            public StringCollection(string[] array) { }
            public int Count { get { throw null; } }
            public virtual string this[int index] { get { throw null; } }
            int System.Collections.ICollection.Count { get { throw null; } }
            bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
            object System.Collections.ICollection.SyncRoot { get { throw null; } }
            [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
            public int Add(string value) { throw null; }
            public void CopyTo(string[] strings, int index) { }
            public System.Collections.IEnumerator GetEnumerator() { throw null; }
            void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
            System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        }
    }
    public enum PrinterUnit
    {
        Display = 0,
        HundredthsOfAMillimeter = 2,
        TenthsOfAMillimeter = 3,
        ThousandthsOfAnInch = 1,
    }
    public sealed partial class PrinterUnitConvert
    {
        internal PrinterUnitConvert() { }
        public static double Convert(double value, System.Drawing.Printing.PrinterUnit fromUnit, System.Drawing.Printing.PrinterUnit toUnit) { throw null; }
        public static System.Drawing.Point Convert(System.Drawing.Point value, System.Drawing.Printing.PrinterUnit fromUnit, System.Drawing.Printing.PrinterUnit toUnit) { throw null; }
        public static System.Drawing.Printing.Margins Convert(System.Drawing.Printing.Margins value, System.Drawing.Printing.PrinterUnit fromUnit, System.Drawing.Printing.PrinterUnit toUnit) { throw null; }
        public static System.Drawing.Rectangle Convert(System.Drawing.Rectangle value, System.Drawing.Printing.PrinterUnit fromUnit, System.Drawing.Printing.PrinterUnit toUnit) { throw null; }
        public static System.Drawing.Size Convert(System.Drawing.Size value, System.Drawing.Printing.PrinterUnit fromUnit, System.Drawing.Printing.PrinterUnit toUnit) { throw null; }
        public static int Convert(int value, System.Drawing.Printing.PrinterUnit fromUnit, System.Drawing.Printing.PrinterUnit toUnit) { throw null; }
    }
    public partial class PrintEventArgs : System.ComponentModel.CancelEventArgs
    {
        public PrintEventArgs() { }
        public System.Drawing.Printing.PrintAction PrintAction { get { throw null; } }
    }
    public delegate void PrintEventHandler(object sender, System.Drawing.Printing.PrintEventArgs e);
    [System.SerializableAttribute]
    public sealed partial class PrintingPermission : System.Security.CodeAccessPermission, System.Security.Permissions.IUnrestrictedPermission
    {
        public PrintingPermission(System.Drawing.Printing.PrintingPermissionLevel printingLevel) { }
        public PrintingPermission(System.Security.Permissions.PermissionState state) { }
        public System.Drawing.Printing.PrintingPermissionLevel Level { get { throw null; } set { } }
        public override System.Security.IPermission Copy() { throw null; }
        public override void FromXml(System.Security.SecurityElement element) { }
        public override System.Security.IPermission Intersect(System.Security.IPermission target) { throw null; }
        public override bool IsSubsetOf(System.Security.IPermission target) { throw null; }
        public bool IsUnrestricted() { throw null; }
        public override System.Security.SecurityElement ToXml() { throw null; }
        public override System.Security.IPermission Union(System.Security.IPermission target) { throw null; }
    }
    [System.AttributeUsageAttribute(System.AttributeTargets.All, AllowMultiple=true)]
    [System.SerializableAttribute]
    public sealed partial class PrintingPermissionAttribute : System.Security.Permissions.CodeAccessSecurityAttribute
    {
        public PrintingPermissionAttribute(System.Security.Permissions.SecurityAction action) : base (default(System.Security.Permissions.SecurityAction)) { }
        public System.Drawing.Printing.PrintingPermissionLevel Level { get { throw null; } set { } }
        public override System.Security.IPermission CreatePermission() { throw null; }
    }
    public enum PrintingPermissionLevel
    {
        AllPrinting = 3,
        DefaultPrinting = 2,
        NoPrinting = 0,
        SafePrinting = 1,
    }
    public partial class PrintPageEventArgs : System.EventArgs
    {
        public PrintPageEventArgs(System.Drawing.Graphics graphics, System.Drawing.Rectangle marginBounds, System.Drawing.Rectangle pageBounds, System.Drawing.Printing.PageSettings pageSettings) { }
        public bool Cancel { get { throw null; } set { } }
        public System.Drawing.Graphics Graphics { get { throw null; } }
        public bool HasMorePages { get { throw null; } set { } }
        public System.Drawing.Rectangle MarginBounds { get { throw null; } }
        public System.Drawing.Rectangle PageBounds { get { throw null; } }
        public System.Drawing.Printing.PageSettings PageSettings { get { throw null; } }
    }
    public delegate void PrintPageEventHandler(object sender, System.Drawing.Printing.PrintPageEventArgs e);
    public enum PrintRange
    {
        AllPages = 0,
        CurrentPage = 4194304,
        Selection = 1,
        SomePages = 2,
    }
    public partial class QueryPageSettingsEventArgs : System.Drawing.Printing.PrintEventArgs
    {
        public QueryPageSettingsEventArgs(System.Drawing.Printing.PageSettings pageSettings) { }
        public System.Drawing.Printing.PageSettings PageSettings { get { throw null; } set { } }
    }
    public delegate void QueryPageSettingsEventHandler(object sender, System.Drawing.Printing.QueryPageSettingsEventArgs e);
    public partial class StandardPrintController : System.Drawing.Printing.PrintController
    {
        public StandardPrintController() { }
        public override void OnEndPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { }
        public override void OnEndPrint(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e) { }
        public override System.Drawing.Graphics OnStartPage(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintPageEventArgs e) { throw null; }
        public override void OnStartPrint(System.Drawing.Printing.PrintDocument document, System.Drawing.Printing.PrintEventArgs e) { }
    }
}
namespace System.Drawing.Text
{
    public abstract partial class FontCollection : System.IDisposable
    {
        internal FontCollection() { }
        public System.Drawing.FontFamily[] Families { get { throw null; } }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        ~FontCollection() { }
    }
    public enum GenericFontFamilies
    {
        Monospace = 2,
        SansSerif = 1,
        Serif = 0,
    }
    public enum HotkeyPrefix
    {
        Hide = 2,
        None = 0,
        Show = 1,
    }
    public sealed partial class InstalledFontCollection : System.Drawing.Text.FontCollection
    {
        public InstalledFontCollection() { }
    }
    public sealed partial class PrivateFontCollection : System.Drawing.Text.FontCollection
    {
        public PrivateFontCollection() { }
        public void AddFontFile(string filename) { }
        public void AddMemoryFont(System.IntPtr memory, int length) { }
        protected override void Dispose(bool disposing) { }
    }
    public enum TextRenderingHint
    {
        AntiAlias = 4,
        AntiAliasGridFit = 3,
        ClearTypeGridFit = 5,
        SingleBitPerPixel = 2,
        SingleBitPerPixelGridFit = 1,
        SystemDefault = 0,
    }
}