0e904c1d1988fe1e14eae4512e02d1520b60a90b
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Drawing.Primitives.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Drawing.Primitives</name>
5   </assembly>
6   <members>
7     <member name="T:System.Drawing.Color">
8       <summary>Represents an ARGB (alpha, red, green, blue) color.</summary>
9     </member>
10     <member name="F:System.Drawing.Color.Empty">
11       <summary>Represents a color that is <see langword="null" />.</summary>
12     </member>
13     <member name="M:System.Drawing.Color.Equals(System.Drawing.Color)">
14       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
15       <param name="other">An object to compare with this object.</param>
16       <returns>
17         <see langword="true" /> if the current object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
18     </member>
19     <member name="M:System.Drawing.Color.Equals(System.Object)">
20       <summary>Tests whether the specified object is a <see cref="T:System.Drawing.Color" /> structure and is equivalent to this <see cref="T:System.Drawing.Color" /> structure.</summary>
21       <param name="obj">The object to test.</param>
22       <returns>
23         <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.Color" /> structure equivalent to this <see cref="T:System.Drawing.Color" /> structure; otherwise, <see langword="false" />.</returns>
24     </member>
25     <member name="M:System.Drawing.Color.FromArgb(System.Int32)">
26       <summary>Creates a <see cref="T:System.Drawing.Color" /> structure from a 32-bit ARGB value.</summary>
27       <param name="argb">A value specifying the 32-bit ARGB value.</param>
28       <returns>The <see cref="T:System.Drawing.Color" /> structure that this method creates.</returns>
29     </member>
30     <member name="M:System.Drawing.Color.FromArgb(System.Int32,System.Drawing.Color)">
31       <summary>Creates a <see cref="T:System.Drawing.Color" /> structure from the specified <see cref="T:System.Drawing.Color" /> structure, but with the new specified alpha value. Although this method allows a 32-bit value to be passed for the alpha value, the value is limited to 8 bits.</summary>
32       <param name="alpha">The alpha value for the new <see cref="T:System.Drawing.Color" />. Valid values are 0 through 255.</param>
33       <param name="baseColor">The <see cref="T:System.Drawing.Color" /> from which to create the new <see cref="T:System.Drawing.Color" />.</param>
34       <exception cref="T:System.ArgumentException">
35         <paramref name="alpha" /> is less than 0 or greater than 255.</exception>
36       <returns>The <see cref="T:System.Drawing.Color" /> that this method creates.</returns>
37     </member>
38     <member name="M:System.Drawing.Color.FromArgb(System.Int32,System.Int32,System.Int32)">
39       <summary>Creates a <see cref="T:System.Drawing.Color" /> structure from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly 255 (fully opaque). Although this method allows a 32-bit value to be passed for each color component, the value of each component is limited to 8 bits.</summary>
40       <param name="red">The red component value for the new <see cref="T:System.Drawing.Color" />. Valid values are 0 through 255.</param>
41       <param name="green">The green component value for the new <see cref="T:System.Drawing.Color" />. Valid values are 0 through 255.</param>
42       <param name="blue">The blue component value for the new <see cref="T:System.Drawing.Color" />. Valid values are 0 through 255.</param>
43       <exception cref="T:System.ArgumentException">
44         <paramref name="red" />, <paramref name="green" />, or <paramref name="blue" /> is less than 0 or greater than 255.</exception>
45       <returns>The <see cref="T:System.Drawing.Color" /> that this method creates.</returns>
46     </member>
47     <member name="M:System.Drawing.Color.FromArgb(System.Int32,System.Int32,System.Int32,System.Int32)">
48       <summary>Creates a <see cref="T:System.Drawing.Color" /> structure from the four ARGB component (alpha, red, green, and blue) values. Although this method allows a 32-bit value to be passed for each component, the value of each component is limited to 8 bits.</summary>
49       <param name="alpha">The alpha component. Valid values are 0 through 255.</param>
50       <param name="red">The red component. Valid values are 0 through 255.</param>
51       <param name="green">The green component. Valid values are 0 through 255.</param>
52       <param name="blue">The blue component. Valid values are 0 through 255.</param>
53       <exception cref="T:System.ArgumentException">
54         <paramref name="alpha" />, <paramref name="red" />, <paramref name="green" />, or <paramref name="blue" /> is less than 0 or greater than 255.</exception>
55       <returns>The <see cref="T:System.Drawing.Color" /> that this method creates.</returns>
56     </member>
57     <member name="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)">
58       <summary>Creates a <see cref="T:System.Drawing.Color" /> structure from the specified predefined color.</summary>
59       <param name="color">An element of the <see cref="T:System.Drawing.KnownColor" /> enumeration.</param>
60       <returns>The <see cref="T:System.Drawing.Color" /> that this method creates.</returns>
61     </member>
62     <member name="M:System.Drawing.Color.FromName(System.String)">
63       <summary>Creates a <see cref="T:System.Drawing.Color" /> structure from the specified name of a predefined color.</summary>
64       <param name="name">A string that is the name of a predefined color. Valid names are the same as the names of the elements of the <see cref="T:System.Drawing.KnownColor" /> enumeration.</param>
65       <returns>The <see cref="T:System.Drawing.Color" /> that this method creates.</returns>
66     </member>
67     <member name="M:System.Drawing.Color.GetBrightness">
68       <summary>Gets the hue-saturation-lightness (HSL) lightness value for this <see cref="T:System.Drawing.Color" /> structure.</summary>
69       <returns>The lightness of this <see cref="T:System.Drawing.Color" />. The lightness ranges from 0.0 through 1.0, where 0.0 represents black and 1.0 represents white.</returns>
70     </member>
71     <member name="M:System.Drawing.Color.GetHashCode">
72       <summary>Returns a hash code for this <see cref="T:System.Drawing.Color" /> structure.</summary>
73       <returns>An integer value that specifies the hash code for this <see cref="T:System.Drawing.Color" />.</returns>
74     </member>
75     <member name="M:System.Drawing.Color.GetHue">
76       <summary>Gets the hue-saturation-lightness (HSL) hue value, in degrees, for this <see cref="T:System.Drawing.Color" /> structure.</summary>
77       <returns>The hue, in degrees, of this <see cref="T:System.Drawing.Color" />. The hue is measured in degrees, ranging from 0.0 through 360.0, in HSL color space.</returns>
78     </member>
79     <member name="M:System.Drawing.Color.GetSaturation">
80       <summary>Gets the hue-saturation-lightness (HSL) saturation value for this <see cref="T:System.Drawing.Color" /> structure.</summary>
81       <returns>The saturation of this <see cref="T:System.Drawing.Color" />. The saturation ranges from 0.0 through 1.0, where 0.0 is grayscale and 1.0 is the most saturated.</returns>
82     </member>
83     <member name="M:System.Drawing.Color.op_Equality(System.Drawing.Color,System.Drawing.Color)">
84       <summary>Tests whether two specified <see cref="T:System.Drawing.Color" /> structures are equivalent.</summary>
85       <param name="left">The <see cref="T:System.Drawing.Color" /> that is to the left of the equality operator.</param>
86       <param name="right">The <see cref="T:System.Drawing.Color" /> that is to the right of the equality operator.</param>
87       <returns>
88         <see langword="true" /> if the two <see cref="T:System.Drawing.Color" /> structures are equal; otherwise, <see langword="false" />.</returns>
89     </member>
90     <member name="M:System.Drawing.Color.op_Inequality(System.Drawing.Color,System.Drawing.Color)">
91       <summary>Tests whether two specified <see cref="T:System.Drawing.Color" /> structures are different.</summary>
92       <param name="left">The <see cref="T:System.Drawing.Color" /> that is to the left of the inequality operator.</param>
93       <param name="right">The <see cref="T:System.Drawing.Color" /> that is to the right of the inequality operator.</param>
94       <returns>
95         <see langword="true" /> if the two <see cref="T:System.Drawing.Color" /> structures are different; otherwise, <see langword="false" />.</returns>
96     </member>
97     <member name="M:System.Drawing.Color.ToArgb">
98       <summary>Gets the 32-bit ARGB value of this <see cref="T:System.Drawing.Color" /> structure.</summary>
99       <returns>The 32-bit ARGB value of this <see cref="T:System.Drawing.Color" />.</returns>
100     </member>
101     <member name="M:System.Drawing.Color.ToKnownColor">
102       <summary>Gets the <see cref="T:System.Drawing.KnownColor" /> value of this <see cref="T:System.Drawing.Color" /> structure.</summary>
103       <returns>An element of the <see cref="T:System.Drawing.KnownColor" /> enumeration, if the <see cref="T:System.Drawing.Color" /> is created from a predefined color by using either the <see cref="M:System.Drawing.Color.FromName(System.String)" /> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)" /> method; otherwise, 0.</returns>
104     </member>
105     <member name="M:System.Drawing.Color.ToString">
106       <summary>Converts this <see cref="T:System.Drawing.Color" /> structure to a human-readable string.</summary>
107       <returns>A string that is the name of this <see cref="T:System.Drawing.Color" />, if the <see cref="T:System.Drawing.Color" /> is created from a predefined color by using either the <see cref="M:System.Drawing.Color.FromName(System.String)" /> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)" /> method; otherwise, a string that consists of the ARGB component names and their values.</returns>
108     </member>
109     <member name="P:System.Drawing.Color.A">
110       <summary>Gets the alpha component value of this <see cref="T:System.Drawing.Color" /> structure.</summary>
111       <returns>The alpha component value of this <see cref="T:System.Drawing.Color" />.</returns>
112     </member>
113     <member name="P:System.Drawing.Color.AliceBlue">
114       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF0F8FF</c>.</summary>
115       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
116     </member>
117     <member name="P:System.Drawing.Color.AntiqueWhite">
118       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFAEBD7</c>.</summary>
119       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
120     </member>
121     <member name="P:System.Drawing.Color.Aqua">
122       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00FFFF</c>.</summary>
123       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
124     </member>
125     <member name="P:System.Drawing.Color.Aquamarine">
126       <summary>Gets a system-defined color that has an ARGB value of <c>#FF7FFFD4</c>.</summary>
127       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
128     </member>
129     <member name="P:System.Drawing.Color.Azure">
130       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF0FFFF</c>.</summary>
131       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
132     </member>
133     <member name="P:System.Drawing.Color.B">
134       <summary>Gets the blue component value of this <see cref="T:System.Drawing.Color" /> structure.</summary>
135       <returns>The blue component value of this <see cref="T:System.Drawing.Color" />.</returns>
136     </member>
137     <member name="P:System.Drawing.Color.Beige">
138       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF5F5DC</c>.</summary>
139       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
140     </member>
141     <member name="P:System.Drawing.Color.Bisque">
142       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFE4C4</c>.</summary>
143       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
144     </member>
145     <member name="P:System.Drawing.Color.Black">
146       <summary>Gets a system-defined color that has an ARGB value of <c>#FF000000</c>.</summary>
147       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
148     </member>
149     <member name="P:System.Drawing.Color.BlanchedAlmond">
150       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFEBCD</c>.</summary>
151       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
152     </member>
153     <member name="P:System.Drawing.Color.Blue">
154       <summary>Gets a system-defined color that has an ARGB value of <c>#FF0000FF</c>.</summary>
155       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
156     </member>
157     <member name="P:System.Drawing.Color.BlueViolet">
158       <summary>Gets a system-defined color that has an ARGB value of <c>#FF8A2BE2</c>.</summary>
159       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
160     </member>
161     <member name="P:System.Drawing.Color.Brown">
162       <summary>Gets a system-defined color that has an ARGB value of <c>#FFA52A2A</c>.</summary>
163       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
164     </member>
165     <member name="P:System.Drawing.Color.BurlyWood">
166       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDEB887</c>.</summary>
167       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
168     </member>
169     <member name="P:System.Drawing.Color.CadetBlue">
170       <summary>Gets a system-defined color that has an ARGB value of <c>#FF5F9EA0</c>.</summary>
171       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
172     </member>
173     <member name="P:System.Drawing.Color.Chartreuse">
174       <summary>Gets a system-defined color that has an ARGB value of <c>#FF7FFF00</c>.</summary>
175       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
176     </member>
177     <member name="P:System.Drawing.Color.Chocolate">
178       <summary>Gets a system-defined color that has an ARGB value of <c>#FFD2691E</c>.</summary>
179       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
180     </member>
181     <member name="P:System.Drawing.Color.Coral">
182       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF7F50</c>.</summary>
183       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
184     </member>
185     <member name="P:System.Drawing.Color.CornflowerBlue">
186       <summary>Gets a system-defined color that has an ARGB value of <c>#FF6495ED</c>.</summary>
187       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
188     </member>
189     <member name="P:System.Drawing.Color.Cornsilk">
190       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFF8DC</c>.</summary>
191       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
192     </member>
193     <member name="P:System.Drawing.Color.Crimson">
194       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDC143C</c>.</summary>
195       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
196     </member>
197     <member name="P:System.Drawing.Color.Cyan">
198       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00FFFF</c>.</summary>
199       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
200     </member>
201     <member name="P:System.Drawing.Color.DarkBlue">
202       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00008B</c>.</summary>
203       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
204     </member>
205     <member name="P:System.Drawing.Color.DarkCyan">
206       <summary>Gets a system-defined color that has an ARGB value of <c>#FF008B8B</c>.</summary>
207       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
208     </member>
209     <member name="P:System.Drawing.Color.DarkGoldenrod">
210       <summary>Gets a system-defined color that has an ARGB value of <c>#FFB8860B</c>.</summary>
211       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
212     </member>
213     <member name="P:System.Drawing.Color.DarkGray">
214       <summary>Gets a system-defined color that has an ARGB value of <c>#FFA9A9A9</c>.</summary>
215       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
216     </member>
217     <member name="P:System.Drawing.Color.DarkGreen">
218       <summary>Gets a system-defined color that has an ARGB value of <c>#FF006400</c>.</summary>
219       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
220     </member>
221     <member name="P:System.Drawing.Color.DarkKhaki">
222       <summary>Gets a system-defined color that has an ARGB value of <c>#FFBDB76B</c>.</summary>
223       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
224     </member>
225     <member name="P:System.Drawing.Color.DarkMagenta">
226       <summary>Gets a system-defined color that has an ARGB value of <c>#FF8B008B</c>.</summary>
227       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
228     </member>
229     <member name="P:System.Drawing.Color.DarkOliveGreen">
230       <summary>Gets a system-defined color that has an ARGB value of <c>#FF556B2F</c>.</summary>
231       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
232     </member>
233     <member name="P:System.Drawing.Color.DarkOrange">
234       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF8C00</c>.</summary>
235       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
236     </member>
237     <member name="P:System.Drawing.Color.DarkOrchid">
238       <summary>Gets a system-defined color that has an ARGB value of <c>#FF9932CC</c>.</summary>
239       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
240     </member>
241     <member name="P:System.Drawing.Color.DarkRed">
242       <summary>Gets a system-defined color that has an ARGB value of <c>#FF8B0000</c>.</summary>
243       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
244     </member>
245     <member name="P:System.Drawing.Color.DarkSalmon">
246       <summary>Gets a system-defined color that has an ARGB value of <c>#FFE9967A</c>.</summary>
247       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
248     </member>
249     <member name="P:System.Drawing.Color.DarkSeaGreen">
250       <summary>Gets a system-defined color that has an ARGB value of <c>#FF8FBC8B</c>.</summary>
251       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
252     </member>
253     <member name="P:System.Drawing.Color.DarkSlateBlue">
254       <summary>Gets a system-defined color that has an ARGB value of <c>#FF483D8B</c>.</summary>
255       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
256     </member>
257     <member name="P:System.Drawing.Color.DarkSlateGray">
258       <summary>Gets a system-defined color that has an ARGB value of <c>#FF2F4F4F</c>.</summary>
259       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
260     </member>
261     <member name="P:System.Drawing.Color.DarkTurquoise">
262       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00CED1</c>.</summary>
263       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
264     </member>
265     <member name="P:System.Drawing.Color.DarkViolet">
266       <summary>Gets a system-defined color that has an ARGB value of <c>#FF9400D3</c>.</summary>
267       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
268     </member>
269     <member name="P:System.Drawing.Color.DeepPink">
270       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF1493</c>.</summary>
271       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
272     </member>
273     <member name="P:System.Drawing.Color.DeepSkyBlue">
274       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00BFFF</c>.</summary>
275       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
276     </member>
277     <member name="P:System.Drawing.Color.DimGray">
278       <summary>Gets a system-defined color that has an ARGB value of <c>#FF696969</c>.</summary>
279       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
280     </member>
281     <member name="P:System.Drawing.Color.DodgerBlue">
282       <summary>Gets a system-defined color that has an ARGB value of <c>#FF1E90FF</c>.</summary>
283       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
284     </member>
285     <member name="P:System.Drawing.Color.Firebrick">
286       <summary>Gets a system-defined color that has an ARGB value of <c>#FFB22222</c>.</summary>
287       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
288     </member>
289     <member name="P:System.Drawing.Color.FloralWhite">
290       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFAF0</c>.</summary>
291       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
292     </member>
293     <member name="P:System.Drawing.Color.ForestGreen">
294       <summary>Gets a system-defined color that has an ARGB value of <c>#FF228B22</c>.</summary>
295       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
296     </member>
297     <member name="P:System.Drawing.Color.Fuchsia">
298       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF00FF</c>.</summary>
299       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
300     </member>
301     <member name="P:System.Drawing.Color.G">
302       <summary>Gets the green component value of this <see cref="T:System.Drawing.Color" /> structure.</summary>
303       <returns>The green component value of this <see cref="T:System.Drawing.Color" />.</returns>
304     </member>
305     <member name="P:System.Drawing.Color.Gainsboro">
306       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDCDCDC</c>.</summary>
307       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
308     </member>
309     <member name="P:System.Drawing.Color.GhostWhite">
310       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF8F8FF</c>.</summary>
311       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
312     </member>
313     <member name="P:System.Drawing.Color.Gold">
314       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFD700</c>.</summary>
315       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
316     </member>
317     <member name="P:System.Drawing.Color.Goldenrod">
318       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDAA520</c>.</summary>
319       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
320     </member>
321     <member name="P:System.Drawing.Color.Gray">
322       <summary>Gets a system-defined color that has an ARGB value of <c>#FF808080</c>.</summary>
323       <returns>A <see cref="T:System.Drawing.Color" /> strcture representing a system-defined color.</returns>
324     </member>
325     <member name="P:System.Drawing.Color.Green">
326       <summary>Gets a system-defined color that has an ARGB value of <c>#FF008000</c>.</summary>
327       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
328     </member>
329     <member name="P:System.Drawing.Color.GreenYellow">
330       <summary>Gets a system-defined color that has an ARGB value of <c>#FFADFF2F</c>.</summary>
331       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
332     </member>
333     <member name="P:System.Drawing.Color.Honeydew">
334       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF0FFF0</c>.</summary>
335       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
336     </member>
337     <member name="P:System.Drawing.Color.HotPink">
338       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF69B4</c>.</summary>
339       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
340     </member>
341     <member name="P:System.Drawing.Color.IndianRed">
342       <summary>Gets a system-defined color that has an ARGB value of <c>#FFCD5C5C</c>.</summary>
343       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
344     </member>
345     <member name="P:System.Drawing.Color.Indigo">
346       <summary>Gets a system-defined color that has an ARGB value of <c>#FF4B0082</c>.</summary>
347       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
348     </member>
349     <member name="P:System.Drawing.Color.IsEmpty">
350       <summary>Specifies whether this <see cref="T:System.Drawing.Color" /> structure is uninitialized.</summary>
351       <returns>This property returns <see langword="true" /> if this color is uninitialized; otherwise, <see langword="false" />.</returns>
352     </member>
353     <member name="P:System.Drawing.Color.IsKnownColor">
354       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.Color" /> structure is a predefined color. Predefined colors are represented by the elements of the <see cref="T:System.Drawing.KnownColor" /> enumeration.</summary>
355       <returns>
356         <see langword="true" /> if this <see cref="T:System.Drawing.Color" /> was created from a predefined color by using either the <see cref="M:System.Drawing.Color.FromName(System.String)" /> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)" /> method; otherwise, <see langword="false" />.</returns>
357     </member>
358     <member name="P:System.Drawing.Color.IsNamedColor">
359       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.Color" /> structure is a named color or a member of the <see cref="T:System.Drawing.KnownColor" /> enumeration.</summary>
360       <returns>
361         <see langword="true" /> if this <see cref="T:System.Drawing.Color" /> was created by using either the <see cref="M:System.Drawing.Color.FromName(System.String)" /> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)" /> method; otherwise, <see langword="false" />.</returns>
362     </member>
363     <member name="P:System.Drawing.Color.IsSystemColor">
364       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.Color" /> structure is a system color. A system color is a color that is used in a Windows display element. System colors are represented by elements of the <see cref="T:System.Drawing.KnownColor" /> enumeration.</summary>
365       <returns>
366         <see langword="true" /> if this <see cref="T:System.Drawing.Color" /> was created from a system color by using either the <see cref="M:System.Drawing.Color.FromName(System.String)" /> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)" /> method; otherwise, <see langword="false" />.</returns>
367     </member>
368     <member name="P:System.Drawing.Color.Ivory">
369       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFFF0</c>.</summary>
370       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
371     </member>
372     <member name="P:System.Drawing.Color.Khaki">
373       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF0E68C</c>.</summary>
374       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
375     </member>
376     <member name="P:System.Drawing.Color.Lavender">
377       <summary>Gets a system-defined color that has an ARGB value of <c>#FFE6E6FA</c>.</summary>
378       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
379     </member>
380     <member name="P:System.Drawing.Color.LavenderBlush">
381       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFF0F5</c>.</summary>
382       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
383     </member>
384     <member name="P:System.Drawing.Color.LawnGreen">
385       <summary>Gets a system-defined color that has an ARGB value of <c>#FF7CFC00</c>.</summary>
386       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
387     </member>
388     <member name="P:System.Drawing.Color.LemonChiffon">
389       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFACD</c>.</summary>
390       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
391     </member>
392     <member name="P:System.Drawing.Color.LightBlue">
393       <summary>Gets a system-defined color that has an ARGB value of <c>#FFADD8E6</c>.</summary>
394       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
395     </member>
396     <member name="P:System.Drawing.Color.LightCoral">
397       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF08080</c>.</summary>
398       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
399     </member>
400     <member name="P:System.Drawing.Color.LightCyan">
401       <summary>Gets a system-defined color that has an ARGB value of <c>#FFE0FFFF</c>.</summary>
402       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
403     </member>
404     <member name="P:System.Drawing.Color.LightGoldenrodYellow">
405       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFAFAD2</c>.</summary>
406       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
407     </member>
408     <member name="P:System.Drawing.Color.LightGray">
409       <summary>Gets a system-defined color that has an ARGB value of <c>#FFD3D3D3</c>.</summary>
410       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
411     </member>
412     <member name="P:System.Drawing.Color.LightGreen">
413       <summary>Gets a system-defined color that has an ARGB value of <c>#FF90EE90</c>.</summary>
414       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
415     </member>
416     <member name="P:System.Drawing.Color.LightPink">
417       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFB6C1</c>.</summary>
418       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
419     </member>
420     <member name="P:System.Drawing.Color.LightSalmon">
421       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFA07A</c>.</summary>
422       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
423     </member>
424     <member name="P:System.Drawing.Color.LightSeaGreen">
425       <summary>Gets a system-defined color that has an ARGB value of <c>#FF20B2AA</c>.</summary>
426       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
427     </member>
428     <member name="P:System.Drawing.Color.LightSkyBlue">
429       <summary>Gets a system-defined color that has an ARGB value of <c>#FF87CEFA</c>.</summary>
430       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
431     </member>
432     <member name="P:System.Drawing.Color.LightSlateGray">
433       <summary>Gets a system-defined color that has an ARGB value of <c>#FF778899</c>.</summary>
434       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
435     </member>
436     <member name="P:System.Drawing.Color.LightSteelBlue">
437       <summary>Gets a system-defined color that has an ARGB value of <c>#FFB0C4DE</c>.</summary>
438       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
439     </member>
440     <member name="P:System.Drawing.Color.LightYellow">
441       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFFE0</c>.</summary>
442       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
443     </member>
444     <member name="P:System.Drawing.Color.Lime">
445       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00FF00</c>.</summary>
446       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
447     </member>
448     <member name="P:System.Drawing.Color.LimeGreen">
449       <summary>Gets a system-defined color that has an ARGB value of <c>#FF32CD32</c>.</summary>
450       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
451     </member>
452     <member name="P:System.Drawing.Color.Linen">
453       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFAF0E6</c>.</summary>
454       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
455     </member>
456     <member name="P:System.Drawing.Color.Magenta">
457       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF00FF</c>.</summary>
458       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
459     </member>
460     <member name="P:System.Drawing.Color.Maroon">
461       <summary>Gets a system-defined color that has an ARGB value of <c>#FF800000</c>.</summary>
462       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
463     </member>
464     <member name="P:System.Drawing.Color.MediumAquamarine">
465       <summary>Gets a system-defined color that has an ARGB value of <c>#FF66CDAA</c>.</summary>
466       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
467     </member>
468     <member name="P:System.Drawing.Color.MediumBlue">
469       <summary>Gets a system-defined color that has an ARGB value of <c>#FF0000CD</c>.</summary>
470       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
471     </member>
472     <member name="P:System.Drawing.Color.MediumOrchid">
473       <summary>Gets a system-defined color that has an ARGB value of <c>#FFBA55D3</c>.</summary>
474       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
475     </member>
476     <member name="P:System.Drawing.Color.MediumPurple">
477       <summary>Gets a system-defined color that has an ARGB value of <c>#FF9370DB</c>.</summary>
478       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
479     </member>
480     <member name="P:System.Drawing.Color.MediumSeaGreen">
481       <summary>Gets a system-defined color that has an ARGB value of <c>#FF3CB371</c>.</summary>
482       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
483     </member>
484     <member name="P:System.Drawing.Color.MediumSlateBlue">
485       <summary>Gets a system-defined color that has an ARGB value of <c>#FF7B68EE</c>.</summary>
486       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
487     </member>
488     <member name="P:System.Drawing.Color.MediumSpringGreen">
489       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00FA9A</c>.</summary>
490       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
491     </member>
492     <member name="P:System.Drawing.Color.MediumTurquoise">
493       <summary>Gets a system-defined color that has an ARGB value of <c>#FF48D1CC</c>.</summary>
494       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
495     </member>
496     <member name="P:System.Drawing.Color.MediumVioletRed">
497       <summary>Gets a system-defined color that has an ARGB value of <c>#FFC71585</c>.</summary>
498       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
499     </member>
500     <member name="P:System.Drawing.Color.MidnightBlue">
501       <summary>Gets a system-defined color that has an ARGB value of <c>#FF191970</c>.</summary>
502       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
503     </member>
504     <member name="P:System.Drawing.Color.MintCream">
505       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF5FFFA</c>.</summary>
506       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
507     </member>
508     <member name="P:System.Drawing.Color.MistyRose">
509       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFE4E1</c>.</summary>
510       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
511     </member>
512     <member name="P:System.Drawing.Color.Moccasin">
513       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFE4B5</c>.</summary>
514       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
515     </member>
516     <member name="P:System.Drawing.Color.Name">
517       <summary>Gets the name of this <see cref="T:System.Drawing.Color" />.</summary>
518       <returns>The name of this <see cref="T:System.Drawing.Color" />.</returns>
519     </member>
520     <member name="P:System.Drawing.Color.NavajoWhite">
521       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFDEAD</c>.</summary>
522       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
523     </member>
524     <member name="P:System.Drawing.Color.Navy">
525       <summary>Gets a system-defined color that has an ARGB value of <c>#FF000080</c>.</summary>
526       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
527     </member>
528     <member name="P:System.Drawing.Color.OldLace">
529       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFDF5E6</c>.</summary>
530       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
531     </member>
532     <member name="P:System.Drawing.Color.Olive">
533       <summary>Gets a system-defined color that has an ARGB value of <c>#FF808000</c>.</summary>
534       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
535     </member>
536     <member name="P:System.Drawing.Color.OliveDrab">
537       <summary>Gets a system-defined color that has an ARGB value of <c>#FF6B8E23</c>.</summary>
538       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
539     </member>
540     <member name="P:System.Drawing.Color.Orange">
541       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFA500</c>.</summary>
542       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
543     </member>
544     <member name="P:System.Drawing.Color.OrangeRed">
545       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF4500</c>.</summary>
546       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
547     </member>
548     <member name="P:System.Drawing.Color.Orchid">
549       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDA70D6</c>.</summary>
550       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
551     </member>
552     <member name="P:System.Drawing.Color.PaleGoldenrod">
553       <summary>Gets a system-defined color that has an ARGB value of <c>#FFEEE8AA</c>.</summary>
554       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
555     </member>
556     <member name="P:System.Drawing.Color.PaleGreen">
557       <summary>Gets a system-defined color that has an ARGB value of <c>#FF98FB98</c>.</summary>
558       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
559     </member>
560     <member name="P:System.Drawing.Color.PaleTurquoise">
561       <summary>Gets a system-defined color that has an ARGB value of <c>#FFAFEEEE</c>.</summary>
562       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
563     </member>
564     <member name="P:System.Drawing.Color.PaleVioletRed">
565       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDB7093</c>.</summary>
566       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
567     </member>
568     <member name="P:System.Drawing.Color.PapayaWhip">
569       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFEFD5</c>.</summary>
570       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
571     </member>
572     <member name="P:System.Drawing.Color.PeachPuff">
573       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFDAB9</c>.</summary>
574       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
575     </member>
576     <member name="P:System.Drawing.Color.Peru">
577       <summary>Gets a system-defined color that has an ARGB value of <c>#FFCD853F</c>.</summary>
578       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
579     </member>
580     <member name="P:System.Drawing.Color.Pink">
581       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFC0CB</c>.</summary>
582       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
583     </member>
584     <member name="P:System.Drawing.Color.Plum">
585       <summary>Gets a system-defined color that has an ARGB value of <c>#FFDDA0DD</c>.</summary>
586       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
587     </member>
588     <member name="P:System.Drawing.Color.PowderBlue">
589       <summary>Gets a system-defined color that has an ARGB value of <c>#FFB0E0E6</c>.</summary>
590       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
591     </member>
592     <member name="P:System.Drawing.Color.Purple">
593       <summary>Gets a system-defined color that has an ARGB value of <c>#FF800080</c>.</summary>
594       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
595     </member>
596     <member name="P:System.Drawing.Color.R">
597       <summary>Gets the red component value of this <see cref="T:System.Drawing.Color" /> structure.</summary>
598       <returns>The red component value of this <see cref="T:System.Drawing.Color" />.</returns>
599     </member>
600     <member name="P:System.Drawing.Color.RebeccaPurple">
601       <summary>Gets a system-defined color that has an ARGB value of <c>#663399</c>.</summary>
602       <returns>A system-defined color.</returns>
603     </member>
604     <member name="P:System.Drawing.Color.Red">
605       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF0000</c>.</summary>
606       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
607     </member>
608     <member name="P:System.Drawing.Color.RosyBrown">
609       <summary>Gets a system-defined color that has an ARGB value of <c>#FFBC8F8F</c>.</summary>
610       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
611     </member>
612     <member name="P:System.Drawing.Color.RoyalBlue">
613       <summary>Gets a system-defined color that has an ARGB value of <c>#FF4169E1</c>.</summary>
614       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
615     </member>
616     <member name="P:System.Drawing.Color.SaddleBrown">
617       <summary>Gets a system-defined color that has an ARGB value of <c>#FF8B4513</c>.</summary>
618       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
619     </member>
620     <member name="P:System.Drawing.Color.Salmon">
621       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFA8072</c>.</summary>
622       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
623     </member>
624     <member name="P:System.Drawing.Color.SandyBrown">
625       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF4A460</c>.</summary>
626       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
627     </member>
628     <member name="P:System.Drawing.Color.SeaGreen">
629       <summary>Gets a system-defined color that has an ARGB value of <c>#FF2E8B57</c>.</summary>
630       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
631     </member>
632     <member name="P:System.Drawing.Color.SeaShell">
633       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFF5EE</c>.</summary>
634       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
635     </member>
636     <member name="P:System.Drawing.Color.Sienna">
637       <summary>Gets a system-defined color that has an ARGB value of <c>#FFA0522D</c>.</summary>
638       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
639     </member>
640     <member name="P:System.Drawing.Color.Silver">
641       <summary>Gets a system-defined color that has an ARGB value of <c>#FFC0C0C0</c>.</summary>
642       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
643     </member>
644     <member name="P:System.Drawing.Color.SkyBlue">
645       <summary>Gets a system-defined color that has an ARGB value of <c>#FF87CEEB</c>.</summary>
646       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
647     </member>
648     <member name="P:System.Drawing.Color.SlateBlue">
649       <summary>Gets a system-defined color that has an ARGB value of <c>#FF6A5ACD</c>.</summary>
650       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
651     </member>
652     <member name="P:System.Drawing.Color.SlateGray">
653       <summary>Gets a system-defined color that has an ARGB value of <c>#FF708090</c>.</summary>
654       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
655     </member>
656     <member name="P:System.Drawing.Color.Snow">
657       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFAFA</c>.</summary>
658       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
659     </member>
660     <member name="P:System.Drawing.Color.SpringGreen">
661       <summary>Gets a system-defined color that has an ARGB value of <c>#FF00FF7F</c>.</summary>
662       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
663     </member>
664     <member name="P:System.Drawing.Color.SteelBlue">
665       <summary>Gets a system-defined color that has an ARGB value of <c>#FF4682B4</c>.</summary>
666       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
667     </member>
668     <member name="P:System.Drawing.Color.Tan">
669       <summary>Gets a system-defined color that has an ARGB value of <c>#FFD2B48C</c>.</summary>
670       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
671     </member>
672     <member name="P:System.Drawing.Color.Teal">
673       <summary>Gets a system-defined color that has an ARGB value of <c>#FF008080</c>.</summary>
674       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
675     </member>
676     <member name="P:System.Drawing.Color.Thistle">
677       <summary>Gets a system-defined color that has an ARGB value of <c>#FFD8BFD8</c>.</summary>
678       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
679     </member>
680     <member name="P:System.Drawing.Color.Tomato">
681       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFF6347</c>.</summary>
682       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
683     </member>
684     <member name="P:System.Drawing.Color.Transparent">
685       <summary>Gets a system-defined color.</summary>
686       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
687     </member>
688     <member name="P:System.Drawing.Color.Turquoise">
689       <summary>Gets a system-defined color that has an ARGB value of <c>#FF40E0D0</c>.</summary>
690       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
691     </member>
692     <member name="P:System.Drawing.Color.Violet">
693       <summary>Gets a system-defined color that has an ARGB value of <c>#FFEE82EE</c>.</summary>
694       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
695     </member>
696     <member name="P:System.Drawing.Color.Wheat">
697       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF5DEB3</c>.</summary>
698       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
699     </member>
700     <member name="P:System.Drawing.Color.White">
701       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFFFF</c>.</summary>
702       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
703     </member>
704     <member name="P:System.Drawing.Color.WhiteSmoke">
705       <summary>Gets a system-defined color that has an ARGB value of <c>#FFF5F5F5</c>.</summary>
706       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
707     </member>
708     <member name="P:System.Drawing.Color.Yellow">
709       <summary>Gets a system-defined color that has an ARGB value of <c>#FFFFFF00</c>.</summary>
710       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
711     </member>
712     <member name="P:System.Drawing.Color.YellowGreen">
713       <summary>Gets a system-defined color that has an ARGB value of <c>#FF9ACD32</c>.</summary>
714       <returns>A <see cref="T:System.Drawing.Color" /> representing a system-defined color.</returns>
715     </member>
716     <member name="T:System.Drawing.ColorTranslator">
717       <summary>Translates colors to and from GDI+ <see cref="T:System.Drawing.Color" /> structures. This class cannot be inherited.</summary>
718     </member>
719     <member name="M:System.Drawing.ColorTranslator.FromHtml(System.String)">
720       <summary>Translates an HTML color representation to a GDI+ <see cref="T:System.Drawing.Color" /> structure.</summary>
721       <param name="htmlColor">The string representation of the Html color to translate.</param>
722       <exception cref="T:System.Exception">
723         <paramref name="htmlColor" /> is not a valid HTML color name.</exception>
724       <returns>The <see cref="T:System.Drawing.Color" /> structure that represents the translated HTML color or <see cref="F:System.Drawing.Color.Empty" /> if <paramref name="htmlColor" /> is <see langword="null" />.</returns>
725     </member>
726     <member name="M:System.Drawing.ColorTranslator.FromOle(System.Int32)">
727       <summary>Translates an OLE color value to a GDI+ <see cref="T:System.Drawing.Color" /> structure.</summary>
728       <param name="oleColor">The OLE color to translate.</param>
729       <returns>The <see cref="T:System.Drawing.Color" /> structure that represents the translated OLE color.</returns>
730     </member>
731     <member name="M:System.Drawing.ColorTranslator.FromWin32(System.Int32)">
732       <summary>Translates a Windows color value to a GDI+ <see cref="T:System.Drawing.Color" /> structure.</summary>
733       <param name="win32Color">The Windows color to translate.</param>
734       <returns>The <see cref="T:System.Drawing.Color" /> structure that represents the translated Windows color.</returns>
735     </member>
736     <member name="M:System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color)">
737       <summary>Translates the specified <see cref="T:System.Drawing.Color" /> structure to an HTML string color representation.</summary>
738       <param name="c">The <see cref="T:System.Drawing.Color" /> structure to translate.</param>
739       <returns>The string that represents the HTML color.</returns>
740     </member>
741     <member name="M:System.Drawing.ColorTranslator.ToOle(System.Drawing.Color)">
742       <summary>Translates the specified <see cref="T:System.Drawing.Color" /> structure to an OLE color.</summary>
743       <param name="c">The <see cref="T:System.Drawing.Color" /> structure to translate.</param>
744       <returns>The OLE color value.</returns>
745     </member>
746     <member name="M:System.Drawing.ColorTranslator.ToWin32(System.Drawing.Color)">
747       <summary>Translates the specified <see cref="T:System.Drawing.Color" /> structure to a Windows color.</summary>
748       <param name="c">The <see cref="T:System.Drawing.Color" /> structure to translate.</param>
749       <returns>The Windows color value.</returns>
750     </member>
751     <member name="T:System.Drawing.KnownColor">
752       <summary>Specifies the known system colors.</summary>
753     </member>
754     <member name="F:System.Drawing.KnownColor.ActiveBorder">
755       <summary>The system-defined color of the active window's border.</summary>
756     </member>
757     <member name="F:System.Drawing.KnownColor.ActiveCaption">
758       <summary>The system-defined color of the background of the active window's title bar.</summary>
759     </member>
760     <member name="F:System.Drawing.KnownColor.ActiveCaptionText">
761       <summary>The system-defined color of the text in the active window's title bar.</summary>
762     </member>
763     <member name="F:System.Drawing.KnownColor.AliceBlue">
764       <summary>A system-defined color.</summary>
765     </member>
766     <member name="F:System.Drawing.KnownColor.AntiqueWhite">
767       <summary>A system-defined color.</summary>
768     </member>
769     <member name="F:System.Drawing.KnownColor.AppWorkspace">
770       <summary>The system-defined color of the application workspace. The application workspace is the area in a multiple-document view that is not being occupied by documents.</summary>
771     </member>
772     <member name="F:System.Drawing.KnownColor.Aqua">
773       <summary>A system-defined color.</summary>
774     </member>
775     <member name="F:System.Drawing.KnownColor.Aquamarine">
776       <summary>A system-defined color.</summary>
777     </member>
778     <member name="F:System.Drawing.KnownColor.Azure">
779       <summary>A system-defined color.</summary>
780     </member>
781     <member name="F:System.Drawing.KnownColor.Beige">
782       <summary>A system-defined color.</summary>
783     </member>
784     <member name="F:System.Drawing.KnownColor.Bisque">
785       <summary>A system-defined color.</summary>
786     </member>
787     <member name="F:System.Drawing.KnownColor.Black">
788       <summary>A system-defined color.</summary>
789     </member>
790     <member name="F:System.Drawing.KnownColor.BlanchedAlmond">
791       <summary>A system-defined color.</summary>
792     </member>
793     <member name="F:System.Drawing.KnownColor.Blue">
794       <summary>A system-defined color.</summary>
795     </member>
796     <member name="F:System.Drawing.KnownColor.BlueViolet">
797       <summary>A system-defined color.</summary>
798     </member>
799     <member name="F:System.Drawing.KnownColor.Brown">
800       <summary>A system-defined color.</summary>
801     </member>
802     <member name="F:System.Drawing.KnownColor.BurlyWood">
803       <summary>A system-defined color.</summary>
804     </member>
805     <member name="F:System.Drawing.KnownColor.ButtonFace">
806       <summary>The system-defined face color of a 3-D element.</summary>
807     </member>
808     <member name="F:System.Drawing.KnownColor.ButtonHighlight">
809       <summary>The system-defined color that is the highlight color of a 3-D element. This color is applied to parts of a 3-D element that face the light source.</summary>
810     </member>
811     <member name="F:System.Drawing.KnownColor.ButtonShadow">
812       <summary>The system-defined color that is the shadow color of a 3-D element. This color is applied to parts of a 3-D element that face away from the light source.</summary>
813     </member>
814     <member name="F:System.Drawing.KnownColor.CadetBlue">
815       <summary>A system-defined color.</summary>
816     </member>
817     <member name="F:System.Drawing.KnownColor.Chartreuse">
818       <summary>A system-defined color.</summary>
819     </member>
820     <member name="F:System.Drawing.KnownColor.Chocolate">
821       <summary>A system-defined color.</summary>
822     </member>
823     <member name="F:System.Drawing.KnownColor.Control">
824       <summary>The system-defined face color of a 3-D element.</summary>
825     </member>
826     <member name="F:System.Drawing.KnownColor.ControlDark">
827       <summary>The system-defined shadow color of a 3-D element. The shadow color is applied to parts of a 3-D element that face away from the light source.</summary>
828     </member>
829     <member name="F:System.Drawing.KnownColor.ControlDarkDark">
830       <summary>The system-defined color that is the dark shadow color of a 3-D element. The dark shadow color is applied to the parts of a 3-D element that are the darkest color.</summary>
831     </member>
832     <member name="F:System.Drawing.KnownColor.ControlLight">
833       <summary>The system-defined color that is the light color of a 3-D element. The light color is applied to parts of a 3-D element that face the light source.</summary>
834     </member>
835     <member name="F:System.Drawing.KnownColor.ControlLightLight">
836       <summary>The system-defined highlight color of a 3-D element. The highlight color is applied to the parts of a 3-D element that are the lightest color.</summary>
837     </member>
838     <member name="F:System.Drawing.KnownColor.ControlText">
839       <summary>The system-defined color of text in a 3-D element.</summary>
840     </member>
841     <member name="F:System.Drawing.KnownColor.Coral">
842       <summary>A system-defined color.</summary>
843     </member>
844     <member name="F:System.Drawing.KnownColor.CornflowerBlue">
845       <summary>A system-defined color.</summary>
846     </member>
847     <member name="F:System.Drawing.KnownColor.Cornsilk">
848       <summary>A system-defined color.</summary>
849     </member>
850     <member name="F:System.Drawing.KnownColor.Crimson">
851       <summary>A system-defined color.</summary>
852     </member>
853     <member name="F:System.Drawing.KnownColor.Cyan">
854       <summary>A system-defined color.</summary>
855     </member>
856     <member name="F:System.Drawing.KnownColor.DarkBlue">
857       <summary>A system-defined color.</summary>
858     </member>
859     <member name="F:System.Drawing.KnownColor.DarkCyan">
860       <summary>A system-defined color.</summary>
861     </member>
862     <member name="F:System.Drawing.KnownColor.DarkGoldenrod">
863       <summary>A system-defined color.</summary>
864     </member>
865     <member name="F:System.Drawing.KnownColor.DarkGray">
866       <summary>A system-defined color.</summary>
867     </member>
868     <member name="F:System.Drawing.KnownColor.DarkGreen">
869       <summary>A system-defined color.</summary>
870     </member>
871     <member name="F:System.Drawing.KnownColor.DarkKhaki">
872       <summary>A system-defined color.</summary>
873     </member>
874     <member name="F:System.Drawing.KnownColor.DarkMagenta">
875       <summary>A system-defined color.</summary>
876     </member>
877     <member name="F:System.Drawing.KnownColor.DarkOliveGreen">
878       <summary>A system-defined color.</summary>
879     </member>
880     <member name="F:System.Drawing.KnownColor.DarkOrange">
881       <summary>A system-defined color.</summary>
882     </member>
883     <member name="F:System.Drawing.KnownColor.DarkOrchid">
884       <summary>A system-defined color.</summary>
885     </member>
886     <member name="F:System.Drawing.KnownColor.DarkRed">
887       <summary>A system-defined color.</summary>
888     </member>
889     <member name="F:System.Drawing.KnownColor.DarkSalmon">
890       <summary>A system-defined color.</summary>
891     </member>
892     <member name="F:System.Drawing.KnownColor.DarkSeaGreen">
893       <summary>A system-defined color.</summary>
894     </member>
895     <member name="F:System.Drawing.KnownColor.DarkSlateBlue">
896       <summary>A system-defined color.</summary>
897     </member>
898     <member name="F:System.Drawing.KnownColor.DarkSlateGray">
899       <summary>A system-defined color.</summary>
900     </member>
901     <member name="F:System.Drawing.KnownColor.DarkTurquoise">
902       <summary>A system-defined color.</summary>
903     </member>
904     <member name="F:System.Drawing.KnownColor.DarkViolet">
905       <summary>A system-defined color.</summary>
906     </member>
907     <member name="F:System.Drawing.KnownColor.DeepPink">
908       <summary>A system-defined color.</summary>
909     </member>
910     <member name="F:System.Drawing.KnownColor.DeepSkyBlue">
911       <summary>A system-defined color.</summary>
912     </member>
913     <member name="F:System.Drawing.KnownColor.Desktop">
914       <summary>The system-defined color of the desktop.</summary>
915     </member>
916     <member name="F:System.Drawing.KnownColor.DimGray">
917       <summary>A system-defined color.</summary>
918     </member>
919     <member name="F:System.Drawing.KnownColor.DodgerBlue">
920       <summary>A system-defined color.</summary>
921     </member>
922     <member name="F:System.Drawing.KnownColor.Firebrick">
923       <summary>A system-defined color.</summary>
924     </member>
925     <member name="F:System.Drawing.KnownColor.FloralWhite">
926       <summary>A system-defined color.</summary>
927     </member>
928     <member name="F:System.Drawing.KnownColor.ForestGreen">
929       <summary>A system-defined color.</summary>
930     </member>
931     <member name="F:System.Drawing.KnownColor.Fuchsia">
932       <summary>A system-defined color.</summary>
933     </member>
934     <member name="F:System.Drawing.KnownColor.Gainsboro">
935       <summary>A system-defined color.</summary>
936     </member>
937     <member name="F:System.Drawing.KnownColor.GhostWhite">
938       <summary>A system-defined color.</summary>
939     </member>
940     <member name="F:System.Drawing.KnownColor.Gold">
941       <summary>A system-defined color.</summary>
942     </member>
943     <member name="F:System.Drawing.KnownColor.Goldenrod">
944       <summary>A system-defined color.</summary>
945     </member>
946     <member name="F:System.Drawing.KnownColor.GradientActiveCaption">
947       <summary>The system-defined color of the lightest color in the color gradient of an active window's title bar.</summary>
948     </member>
949     <member name="F:System.Drawing.KnownColor.GradientInactiveCaption">
950       <summary>The system-defined color of the lightest color in the color gradient of an inactive window's title bar.</summary>
951     </member>
952     <member name="F:System.Drawing.KnownColor.Gray">
953       <summary>A system-defined color.</summary>
954     </member>
955     <member name="F:System.Drawing.KnownColor.GrayText">
956       <summary>The system-defined color of dimmed text. Items in a list that are disabled are displayed in dimmed text.</summary>
957     </member>
958     <member name="F:System.Drawing.KnownColor.Green">
959       <summary>A system-defined color.</summary>
960     </member>
961     <member name="F:System.Drawing.KnownColor.GreenYellow">
962       <summary>A system-defined color.</summary>
963     </member>
964     <member name="F:System.Drawing.KnownColor.Highlight">
965       <summary>The system-defined color of the background of selected items. This includes selected menu items as well as selected text.</summary>
966     </member>
967     <member name="F:System.Drawing.KnownColor.HighlightText">
968       <summary>The system-defined color of the text of selected items.</summary>
969     </member>
970     <member name="F:System.Drawing.KnownColor.Honeydew">
971       <summary>A system-defined color.</summary>
972     </member>
973     <member name="F:System.Drawing.KnownColor.HotPink">
974       <summary>A system-defined color.</summary>
975     </member>
976     <member name="F:System.Drawing.KnownColor.HotTrack">
977       <summary>The system-defined color used to designate a hot-tracked item. Single-clicking a hot-tracked item executes the item.</summary>
978     </member>
979     <member name="F:System.Drawing.KnownColor.InactiveBorder">
980       <summary>The system-defined color of an inactive window's border.</summary>
981     </member>
982     <member name="F:System.Drawing.KnownColor.InactiveCaption">
983       <summary>The system-defined color of the background of an inactive window's title bar.</summary>
984     </member>
985     <member name="F:System.Drawing.KnownColor.InactiveCaptionText">
986       <summary>The system-defined color of the text in an inactive window's title bar.</summary>
987     </member>
988     <member name="F:System.Drawing.KnownColor.IndianRed">
989       <summary>A system-defined color.</summary>
990     </member>
991     <member name="F:System.Drawing.KnownColor.Indigo">
992       <summary>A system-defined color.</summary>
993     </member>
994     <member name="F:System.Drawing.KnownColor.Info">
995       <summary>The system-defined color of the background of a ToolTip.</summary>
996     </member>
997     <member name="F:System.Drawing.KnownColor.InfoText">
998       <summary>The system-defined color of the text of a ToolTip.</summary>
999     </member>
1000     <member name="F:System.Drawing.KnownColor.Ivory">
1001       <summary>A system-defined color.</summary>
1002     </member>
1003     <member name="F:System.Drawing.KnownColor.Khaki">
1004       <summary>A system-defined color.</summary>
1005     </member>
1006     <member name="F:System.Drawing.KnownColor.Lavender">
1007       <summary>A system-defined color.</summary>
1008     </member>
1009     <member name="F:System.Drawing.KnownColor.LavenderBlush">
1010       <summary>A system-defined color.</summary>
1011     </member>
1012     <member name="F:System.Drawing.KnownColor.LawnGreen">
1013       <summary>A system-defined color.</summary>
1014     </member>
1015     <member name="F:System.Drawing.KnownColor.LemonChiffon">
1016       <summary>A system-defined color.</summary>
1017     </member>
1018     <member name="F:System.Drawing.KnownColor.LightBlue">
1019       <summary>A system-defined color.</summary>
1020     </member>
1021     <member name="F:System.Drawing.KnownColor.LightCoral">
1022       <summary>A system-defined color.</summary>
1023     </member>
1024     <member name="F:System.Drawing.KnownColor.LightCyan">
1025       <summary>A system-defined color.</summary>
1026     </member>
1027     <member name="F:System.Drawing.KnownColor.LightGoldenrodYellow">
1028       <summary>A system-defined color.</summary>
1029     </member>
1030     <member name="F:System.Drawing.KnownColor.LightGray">
1031       <summary>A system-defined color.</summary>
1032     </member>
1033     <member name="F:System.Drawing.KnownColor.LightGreen">
1034       <summary>A system-defined color.</summary>
1035     </member>
1036     <member name="F:System.Drawing.KnownColor.LightPink">
1037       <summary>A system-defined color.</summary>
1038     </member>
1039     <member name="F:System.Drawing.KnownColor.LightSalmon">
1040       <summary>A system-defined color.</summary>
1041     </member>
1042     <member name="F:System.Drawing.KnownColor.LightSeaGreen">
1043       <summary>A system-defined color.</summary>
1044     </member>
1045     <member name="F:System.Drawing.KnownColor.LightSkyBlue">
1046       <summary>A system-defined color.</summary>
1047     </member>
1048     <member name="F:System.Drawing.KnownColor.LightSlateGray">
1049       <summary>A system-defined color.</summary>
1050     </member>
1051     <member name="F:System.Drawing.KnownColor.LightSteelBlue">
1052       <summary>A system-defined color.</summary>
1053     </member>
1054     <member name="F:System.Drawing.KnownColor.LightYellow">
1055       <summary>A system-defined color.</summary>
1056     </member>
1057     <member name="F:System.Drawing.KnownColor.Lime">
1058       <summary>A system-defined color.</summary>
1059     </member>
1060     <member name="F:System.Drawing.KnownColor.LimeGreen">
1061       <summary>A system-defined color.</summary>
1062     </member>
1063     <member name="F:System.Drawing.KnownColor.Linen">
1064       <summary>A system-defined color.</summary>
1065     </member>
1066     <member name="F:System.Drawing.KnownColor.Magenta">
1067       <summary>A system-defined color.</summary>
1068     </member>
1069     <member name="F:System.Drawing.KnownColor.Maroon">
1070       <summary>A system-defined color.</summary>
1071     </member>
1072     <member name="F:System.Drawing.KnownColor.MediumAquamarine">
1073       <summary>A system-defined color.</summary>
1074     </member>
1075     <member name="F:System.Drawing.KnownColor.MediumBlue">
1076       <summary>A system-defined color.</summary>
1077     </member>
1078     <member name="F:System.Drawing.KnownColor.MediumOrchid">
1079       <summary>A system-defined color.</summary>
1080     </member>
1081     <member name="F:System.Drawing.KnownColor.MediumPurple">
1082       <summary>A system-defined color.</summary>
1083     </member>
1084     <member name="F:System.Drawing.KnownColor.MediumSeaGreen">
1085       <summary>A system-defined color.</summary>
1086     </member>
1087     <member name="F:System.Drawing.KnownColor.MediumSlateBlue">
1088       <summary>A system-defined color.</summary>
1089     </member>
1090     <member name="F:System.Drawing.KnownColor.MediumSpringGreen">
1091       <summary>A system-defined color.</summary>
1092     </member>
1093     <member name="F:System.Drawing.KnownColor.MediumTurquoise">
1094       <summary>A system-defined color.</summary>
1095     </member>
1096     <member name="F:System.Drawing.KnownColor.MediumVioletRed">
1097       <summary>A system-defined color.</summary>
1098     </member>
1099     <member name="F:System.Drawing.KnownColor.Menu">
1100       <summary>The system-defined color of a menu's background.</summary>
1101     </member>
1102     <member name="F:System.Drawing.KnownColor.MenuBar">
1103       <summary>The system-defined color of the background of a menu bar.</summary>
1104     </member>
1105     <member name="F:System.Drawing.KnownColor.MenuHighlight">
1106       <summary>The system-defined color used to highlight menu items when the menu appears as a flat menu.</summary>
1107     </member>
1108     <member name="F:System.Drawing.KnownColor.MenuText">
1109       <summary>The system-defined color of a menu's text.</summary>
1110     </member>
1111     <member name="F:System.Drawing.KnownColor.MidnightBlue">
1112       <summary>A system-defined color.</summary>
1113     </member>
1114     <member name="F:System.Drawing.KnownColor.MintCream">
1115       <summary>A system-defined color.</summary>
1116     </member>
1117     <member name="F:System.Drawing.KnownColor.MistyRose">
1118       <summary>A system-defined color.</summary>
1119     </member>
1120     <member name="F:System.Drawing.KnownColor.Moccasin">
1121       <summary>A system-defined color.</summary>
1122     </member>
1123     <member name="F:System.Drawing.KnownColor.NavajoWhite">
1124       <summary>A system-defined color.</summary>
1125     </member>
1126     <member name="F:System.Drawing.KnownColor.Navy">
1127       <summary>A system-defined color.</summary>
1128     </member>
1129     <member name="F:System.Drawing.KnownColor.OldLace">
1130       <summary>A system-defined color.</summary>
1131     </member>
1132     <member name="F:System.Drawing.KnownColor.Olive">
1133       <summary>A system-defined color.</summary>
1134     </member>
1135     <member name="F:System.Drawing.KnownColor.OliveDrab">
1136       <summary>A system-defined color.</summary>
1137     </member>
1138     <member name="F:System.Drawing.KnownColor.Orange">
1139       <summary>A system-defined color.</summary>
1140     </member>
1141     <member name="F:System.Drawing.KnownColor.OrangeRed">
1142       <summary>A system-defined color.</summary>
1143     </member>
1144     <member name="F:System.Drawing.KnownColor.Orchid">
1145       <summary>A system-defined color.</summary>
1146     </member>
1147     <member name="F:System.Drawing.KnownColor.PaleGoldenrod">
1148       <summary>A system-defined color.</summary>
1149     </member>
1150     <member name="F:System.Drawing.KnownColor.PaleGreen">
1151       <summary>A system-defined color.</summary>
1152     </member>
1153     <member name="F:System.Drawing.KnownColor.PaleTurquoise">
1154       <summary>A system-defined color.</summary>
1155     </member>
1156     <member name="F:System.Drawing.KnownColor.PaleVioletRed">
1157       <summary>A system-defined color.</summary>
1158     </member>
1159     <member name="F:System.Drawing.KnownColor.PapayaWhip">
1160       <summary>A system-defined color.</summary>
1161     </member>
1162     <member name="F:System.Drawing.KnownColor.PeachPuff">
1163       <summary>A system-defined color.</summary>
1164     </member>
1165     <member name="F:System.Drawing.KnownColor.Peru">
1166       <summary>A system-defined color.</summary>
1167     </member>
1168     <member name="F:System.Drawing.KnownColor.Pink">
1169       <summary>A system-defined color.</summary>
1170     </member>
1171     <member name="F:System.Drawing.KnownColor.Plum">
1172       <summary>A system-defined color.</summary>
1173     </member>
1174     <member name="F:System.Drawing.KnownColor.PowderBlue">
1175       <summary>A system-defined color.</summary>
1176     </member>
1177     <member name="F:System.Drawing.KnownColor.Purple">
1178       <summary>A system-defined color.</summary>
1179     </member>
1180     <member name="F:System.Drawing.KnownColor.RebeccaPurple">
1181       <summary>A system-defined color representing the ARGB value <c>#663399</c>.</summary>
1182     </member>
1183     <member name="F:System.Drawing.KnownColor.Red">
1184       <summary>A system-defined color.</summary>
1185     </member>
1186     <member name="F:System.Drawing.KnownColor.RosyBrown">
1187       <summary>A system-defined color.</summary>
1188     </member>
1189     <member name="F:System.Drawing.KnownColor.RoyalBlue">
1190       <summary>A system-defined color.</summary>
1191     </member>
1192     <member name="F:System.Drawing.KnownColor.SaddleBrown">
1193       <summary>A system-defined color.</summary>
1194     </member>
1195     <member name="F:System.Drawing.KnownColor.Salmon">
1196       <summary>A system-defined color.</summary>
1197     </member>
1198     <member name="F:System.Drawing.KnownColor.SandyBrown">
1199       <summary>A system-defined color.</summary>
1200     </member>
1201     <member name="F:System.Drawing.KnownColor.ScrollBar">
1202       <summary>The system-defined color of the background of a scroll bar.</summary>
1203     </member>
1204     <member name="F:System.Drawing.KnownColor.SeaGreen">
1205       <summary>A system-defined color.</summary>
1206     </member>
1207     <member name="F:System.Drawing.KnownColor.SeaShell">
1208       <summary>A system-defined color.</summary>
1209     </member>
1210     <member name="F:System.Drawing.KnownColor.Sienna">
1211       <summary>A system-defined color.</summary>
1212     </member>
1213     <member name="F:System.Drawing.KnownColor.Silver">
1214       <summary>A system-defined color.</summary>
1215     </member>
1216     <member name="F:System.Drawing.KnownColor.SkyBlue">
1217       <summary>A system-defined color.</summary>
1218     </member>
1219     <member name="F:System.Drawing.KnownColor.SlateBlue">
1220       <summary>A system-defined color.</summary>
1221     </member>
1222     <member name="F:System.Drawing.KnownColor.SlateGray">
1223       <summary>A system-defined color.</summary>
1224     </member>
1225     <member name="F:System.Drawing.KnownColor.Snow">
1226       <summary>A system-defined color.</summary>
1227     </member>
1228     <member name="F:System.Drawing.KnownColor.SpringGreen">
1229       <summary>A system-defined color.</summary>
1230     </member>
1231     <member name="F:System.Drawing.KnownColor.SteelBlue">
1232       <summary>A system-defined color.</summary>
1233     </member>
1234     <member name="F:System.Drawing.KnownColor.Tan">
1235       <summary>A system-defined color.</summary>
1236     </member>
1237     <member name="F:System.Drawing.KnownColor.Teal">
1238       <summary>A system-defined color.</summary>
1239     </member>
1240     <member name="F:System.Drawing.KnownColor.Thistle">
1241       <summary>A system-defined color.</summary>
1242     </member>
1243     <member name="F:System.Drawing.KnownColor.Tomato">
1244       <summary>A system-defined color.</summary>
1245     </member>
1246     <member name="F:System.Drawing.KnownColor.Transparent">
1247       <summary>A system-defined color.</summary>
1248     </member>
1249     <member name="F:System.Drawing.KnownColor.Turquoise">
1250       <summary>A system-defined color.</summary>
1251     </member>
1252     <member name="F:System.Drawing.KnownColor.Violet">
1253       <summary>A system-defined color.</summary>
1254     </member>
1255     <member name="F:System.Drawing.KnownColor.Wheat">
1256       <summary>A system-defined color.</summary>
1257     </member>
1258     <member name="F:System.Drawing.KnownColor.White">
1259       <summary>A system-defined color.</summary>
1260     </member>
1261     <member name="F:System.Drawing.KnownColor.WhiteSmoke">
1262       <summary>A system-defined color.</summary>
1263     </member>
1264     <member name="F:System.Drawing.KnownColor.Window">
1265       <summary>The system-defined color of the background in the client area of a window.</summary>
1266     </member>
1267     <member name="F:System.Drawing.KnownColor.WindowFrame">
1268       <summary>The system-defined color of a window frame.</summary>
1269     </member>
1270     <member name="F:System.Drawing.KnownColor.WindowText">
1271       <summary>The system-defined color of the text in the client area of a window.</summary>
1272     </member>
1273     <member name="F:System.Drawing.KnownColor.Yellow">
1274       <summary>A system-defined color.</summary>
1275     </member>
1276     <member name="F:System.Drawing.KnownColor.YellowGreen">
1277       <summary>A system-defined color.</summary>
1278     </member>
1279     <member name="T:System.Drawing.Point">
1280       <summary>Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.</summary>
1281     </member>
1282     <member name="F:System.Drawing.Point.Empty">
1283       <summary>Represents a <see cref="T:System.Drawing.Point" /> that has <see cref="P:System.Drawing.Point.X" /> and <see cref="P:System.Drawing.Point.Y" /> values set to zero.</summary>
1284     </member>
1285     <member name="M:System.Drawing.Point.#ctor(System.Drawing.Size)">
1286       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Point" /> struct from a <see cref="T:System.Drawing.Size" />.</summary>
1287       <param name="sz">A <see cref="T:System.Drawing.Size" /> that specifies the coordinates for the new <see cref="T:System.Drawing.Point" />.</param>
1288     </member>
1289     <member name="M:System.Drawing.Point.#ctor(System.Int32)">
1290       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Point" /> struct using coordinates specified by an integer value.</summary>
1291       <param name="dw">A 32-bit integer that specifies the coordinates for the new <see cref="T:System.Drawing.Point" />.</param>
1292     </member>
1293     <member name="M:System.Drawing.Point.#ctor(System.Int32,System.Int32)">
1294       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Point" /> struct with the specified coordinates.</summary>
1295       <param name="x">The horizontal position of the point.</param>
1296       <param name="y">The vertical position of the point.</param>
1297     </member>
1298     <member name="M:System.Drawing.Point.Add(System.Drawing.Point,System.Drawing.Size)">
1299       <summary>Adds the specified <see cref="T:System.Drawing.Size" /> to the specified <see cref="T:System.Drawing.Point" />.</summary>
1300       <param name="pt">The <see cref="T:System.Drawing.Point" /> to add.</param>
1301       <param name="sz">The <see cref="T:System.Drawing.Size" /> to add.</param>
1302       <returns>The <see cref="T:System.Drawing.Point" /> that is the result of the addition operation.</returns>
1303     </member>
1304     <member name="M:System.Drawing.Point.Ceiling(System.Drawing.PointF)">
1305       <summary>Converts the specified <see cref="T:System.Drawing.PointF" /> to a <see cref="T:System.Drawing.Point" /> by rounding the values of the <see cref="T:System.Drawing.PointF" /> to the next higher integer values.</summary>
1306       <param name="value">The <see cref="T:System.Drawing.PointF" /> to convert.</param>
1307       <returns>The <see cref="T:System.Drawing.Point" /> this method converts to.</returns>
1308     </member>
1309     <member name="M:System.Drawing.Point.Equals(System.Drawing.Point)">
1310       <summary>Specifies whether this point instance contains the same coordinates as another point.</summary>
1311       <param name="other">The point to test for equality.</param>
1312       <returns>
1313         <see langword="true" /> if <paramref name="other" /> has the same coordinates as this point instance.</returns>
1314     </member>
1315     <member name="M:System.Drawing.Point.Equals(System.Object)">
1316       <summary>Specifies whether this point instance contains the same coordinates as the specified object.</summary>
1317       <param name="obj">The <see cref="T:System.Object" /> to test for equality.</param>
1318       <returns>
1319         <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.Point" /> and has the same coordinates as this point instance.</returns>
1320     </member>
1321     <member name="M:System.Drawing.Point.GetHashCode">
1322       <summary>Returns a hash code for this <see cref="T:System.Drawing.Point" />.</summary>
1323       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.Point" />.</returns>
1324     </member>
1325     <member name="M:System.Drawing.Point.Offset(System.Drawing.Point)">
1326       <summary>Translates this <see cref="T:System.Drawing.Point" /> by the specified <see cref="T:System.Drawing.Point" />.</summary>
1327       <param name="p">The <see cref="T:System.Drawing.Point" /> used offset this <see cref="T:System.Drawing.Point" />.</param>
1328     </member>
1329     <member name="M:System.Drawing.Point.Offset(System.Int32,System.Int32)">
1330       <summary>Translates this <see cref="T:System.Drawing.Point" /> by the specified amount.</summary>
1331       <param name="dx">The amount to offset the x-coordinate.</param>
1332       <param name="dy">The amount to offset the y-coordinate.</param>
1333     </member>
1334     <member name="M:System.Drawing.Point.op_Addition(System.Drawing.Point,System.Drawing.Size)">
1335       <summary>Translates a <see cref="T:System.Drawing.Point" /> by a given <see cref="T:System.Drawing.Size" />.</summary>
1336       <param name="pt">The <see cref="T:System.Drawing.Point" /> to translate.</param>
1337       <param name="sz">A <see cref="T:System.Drawing.Size" /> that specifies the pair of numbers to add to the coordinates of <paramref name="pt" />.</param>
1338       <returns>The translated <see cref="T:System.Drawing.Point" />.</returns>
1339     </member>
1340     <member name="M:System.Drawing.Point.op_Equality(System.Drawing.Point,System.Drawing.Point)">
1341       <summary>Compares two <see cref="T:System.Drawing.Point" /> objects. The result specifies whether the values of the <see cref="P:System.Drawing.Point.X" /> and <see cref="P:System.Drawing.Point.Y" /> properties of the two <see cref="T:System.Drawing.Point" /> objects are equal.</summary>
1342       <param name="left">A <see cref="T:System.Drawing.Point" /> to compare.</param>
1343       <param name="right">A <see cref="T:System.Drawing.Point" /> to compare.</param>
1344       <returns>
1345         <see langword="true" /> if the <see cref="P:System.Drawing.Point.X" /> and <see cref="P:System.Drawing.Point.Y" /> values of <paramref name="left" /> and <paramref name="right" /> are equal; otherwise, <see langword="false" />.</returns>
1346     </member>
1347     <member name="M:System.Drawing.Point.op_Explicit(System.Drawing.Point)~System.Drawing.Size">
1348       <summary>Converts the specified <see cref="T:System.Drawing.Point" /> structure to a <see cref="T:System.Drawing.Size" /> structure.</summary>
1349       <param name="p">The <see cref="T:System.Drawing.Point" /> to be converted.</param>
1350       <returns>The <see cref="T:System.Drawing.Size" /> that results from the conversion.</returns>
1351     </member>
1352     <member name="M:System.Drawing.Point.op_Implicit(System.Drawing.Point)~System.Drawing.PointF">
1353       <summary>Converts the specified <see cref="T:System.Drawing.Point" /> structure to a <see cref="T:System.Drawing.PointF" /> structure.</summary>
1354       <param name="p">The <see cref="T:System.Drawing.Point" /> to be converted.</param>
1355       <returns>The <see cref="T:System.Drawing.PointF" /> that results from the conversion.</returns>
1356     </member>
1357     <member name="M:System.Drawing.Point.op_Inequality(System.Drawing.Point,System.Drawing.Point)">
1358       <summary>Compares two <see cref="T:System.Drawing.Point" /> objects. The result specifies whether the values of the <see cref="P:System.Drawing.Point.X" /> or <see cref="P:System.Drawing.Point.Y" /> properties of the two <see cref="T:System.Drawing.Point" /> objects are unequal.</summary>
1359       <param name="left">A <see cref="T:System.Drawing.Point" /> to compare.</param>
1360       <param name="right">A <see cref="T:System.Drawing.Point" /> to compare.</param>
1361       <returns>
1362         <see langword="true" /> if the values of either the <see cref="P:System.Drawing.Point.X" /> properties or the <see cref="P:System.Drawing.Point.Y" /> properties of <paramref name="left" /> and <paramref name="right" /> differ; otherwise, <see langword="false" />.</returns>
1363     </member>
1364     <member name="M:System.Drawing.Point.op_Subtraction(System.Drawing.Point,System.Drawing.Size)">
1365       <summary>Translates a <see cref="T:System.Drawing.Point" /> by the negative of a given <see cref="T:System.Drawing.Size" />.</summary>
1366       <param name="pt">The <see cref="T:System.Drawing.Point" /> to translate.</param>
1367       <param name="sz">A <see cref="T:System.Drawing.Size" /> that specifies the pair of numbers to subtract from the coordinates of <paramref name="pt" />.</param>
1368       <returns>A <see cref="T:System.Drawing.Point" /> structure that is translated by the negative of a given <see cref="T:System.Drawing.Size" /> structure.</returns>
1369     </member>
1370     <member name="M:System.Drawing.Point.Round(System.Drawing.PointF)">
1371       <summary>Converts the specified <see cref="T:System.Drawing.PointF" /> to a <see cref="T:System.Drawing.Point" /> object by rounding the <see cref="T:System.Drawing.PointF" /> values to the nearest integer.</summary>
1372       <param name="value">The <see cref="T:System.Drawing.PointF" /> to convert.</param>
1373       <returns>The <see cref="T:System.Drawing.Point" /> this method converts to.</returns>
1374     </member>
1375     <member name="M:System.Drawing.Point.Subtract(System.Drawing.Point,System.Drawing.Size)">
1376       <summary>Returns the result of subtracting specified <see cref="T:System.Drawing.Size" /> from the specified <see cref="T:System.Drawing.Point" />.</summary>
1377       <param name="pt">The <see cref="T:System.Drawing.Point" /> to be subtracted from.</param>
1378       <param name="sz">The <see cref="T:System.Drawing.Size" /> to subtract from the <see cref="T:System.Drawing.Point" />.</param>
1379       <returns>The <see cref="T:System.Drawing.Point" /> that is the result of the subtraction operation.</returns>
1380     </member>
1381     <member name="M:System.Drawing.Point.ToString">
1382       <summary>Converts this <see cref="T:System.Drawing.Point" /> to a human-readable string.</summary>
1383       <returns>A string that represents this <see cref="T:System.Drawing.Point" />.</returns>
1384     </member>
1385     <member name="M:System.Drawing.Point.Truncate(System.Drawing.PointF)">
1386       <summary>Converts the specified <see cref="T:System.Drawing.PointF" /> to a <see cref="T:System.Drawing.Point" /> by truncating the values of the <see cref="T:System.Drawing.PointF" />.</summary>
1387       <param name="value">The <see cref="T:System.Drawing.PointF" /> to convert.</param>
1388       <returns>The <see cref="T:System.Drawing.Point" /> this method converts to.</returns>
1389     </member>
1390     <member name="P:System.Drawing.Point.IsEmpty">
1391       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.Point" /> is empty.</summary>
1392       <returns>
1393         <see langword="true" /> if both <see cref="P:System.Drawing.Point.X" /> and <see cref="P:System.Drawing.Point.Y" /> are 0; otherwise, <see langword="false" />.</returns>
1394     </member>
1395     <member name="P:System.Drawing.Point.X">
1396       <summary>Gets or sets the x-coordinate of this <see cref="T:System.Drawing.Point" />.</summary>
1397       <returns>The x-coordinate of this <see cref="T:System.Drawing.Point" />.</returns>
1398     </member>
1399     <member name="P:System.Drawing.Point.Y">
1400       <summary>Gets or sets the y-coordinate of this <see cref="T:System.Drawing.Point" />.</summary>
1401       <returns>The y-coordinate of this <see cref="T:System.Drawing.Point" />.</returns>
1402     </member>
1403     <member name="T:System.Drawing.PointF">
1404       <summary>Represents an ordered pair of floating-point x- and y-coordinates that defines a point in a two-dimensional plane.</summary>
1405     </member>
1406     <member name="F:System.Drawing.PointF.Empty">
1407       <summary>Represents a new instance of the <see cref="T:System.Drawing.PointF" /> class with member data left uninitialized.</summary>
1408     </member>
1409     <member name="M:System.Drawing.PointF.#ctor(System.Numerics.Vector2)">
1410       <summary>Initializes a new instance of the <see cref="T:System.Drawing.PointF" /> struct from the specified <see cref="T:System.Numerics.Vector2" />.</summary>
1411       <param name="vector">The source vector.</param>
1412     </member>
1413     <member name="M:System.Drawing.PointF.#ctor(System.Single,System.Single)">
1414       <summary>Initializes a new instance of the <see cref="T:System.Drawing.PointF" /> class with the specified coordinates.</summary>
1415       <param name="x">The horizontal position of the point.</param>
1416       <param name="y">The vertical position of the point.</param>
1417     </member>
1418     <member name="M:System.Drawing.PointF.Add(System.Drawing.PointF,System.Drawing.Size)">
1419       <summary>Translates a given <see cref="T:System.Drawing.PointF" /> by the specified <see cref="T:System.Drawing.Size" />.</summary>
1420       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1421       <param name="sz">The <see cref="T:System.Drawing.Size" /> that specifies the numbers to add to the coordinates of <paramref name="pt" />.</param>
1422       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1423     </member>
1424     <member name="M:System.Drawing.PointF.Add(System.Drawing.PointF,System.Drawing.SizeF)">
1425       <summary>Translates a given <see cref="T:System.Drawing.PointF" /> by a specified <see cref="T:System.Drawing.SizeF" />.</summary>
1426       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1427       <param name="sz">The <see cref="T:System.Drawing.SizeF" /> that specifies the numbers to add to the coordinates of <paramref name="pt" />.</param>
1428       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1429     </member>
1430     <member name="M:System.Drawing.PointF.Equals(System.Drawing.PointF)">
1431       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
1432       <param name="other">An object to compare with this object.</param>
1433       <returns>
1434         <see langword="true" /> if the current object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1435     </member>
1436     <member name="M:System.Drawing.PointF.Equals(System.Object)">
1437       <summary>Specifies whether this <see cref="T:System.Drawing.PointF" /> contains the same coordinates as the specified <see cref="T:System.Object" />.</summary>
1438       <param name="obj">The <see cref="T:System.Object" /> to test.</param>
1439       <returns>This method returns <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.PointF" /> and has the same coordinates as this <see cref="T:System.Drawing.Point" />.</returns>
1440     </member>
1441     <member name="M:System.Drawing.PointF.GetHashCode">
1442       <summary>Returns a hash code for this <see cref="T:System.Drawing.PointF" /> structure.</summary>
1443       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.PointF" /> structure.</returns>
1444     </member>
1445     <member name="M:System.Drawing.PointF.op_Addition(System.Drawing.PointF,System.Drawing.Size)">
1446       <summary>Translates a <see cref="T:System.Drawing.PointF" /> by a given <see cref="T:System.Drawing.Size" />.</summary>
1447       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1448       <param name="sz">A <see cref="T:System.Drawing.Size" /> that specifies the pair of numbers to add to the coordinates of <paramref name="pt" />.</param>
1449       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1450     </member>
1451     <member name="M:System.Drawing.PointF.op_Addition(System.Drawing.PointF,System.Drawing.SizeF)">
1452       <summary>Translates the <see cref="T:System.Drawing.PointF" /> by the specified <see cref="T:System.Drawing.SizeF" />.</summary>
1453       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1454       <param name="sz">The <see cref="T:System.Drawing.SizeF" /> that specifies the numbers to add to the x- and y-coordinates of the <see cref="T:System.Drawing.PointF" />.</param>
1455       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1456     </member>
1457     <member name="M:System.Drawing.PointF.op_Equality(System.Drawing.PointF,System.Drawing.PointF)">
1458       <summary>Compares two <see cref="T:System.Drawing.PointF" /> structures. The result specifies whether the values of the <see cref="P:System.Drawing.PointF.X" /> and <see cref="P:System.Drawing.PointF.Y" /> properties of the two <see cref="T:System.Drawing.PointF" /> structures are equal.</summary>
1459       <param name="left">A <see cref="T:System.Drawing.PointF" /> to compare.</param>
1460       <param name="right">A <see cref="T:System.Drawing.PointF" /> to compare.</param>
1461       <returns>
1462         <see langword="true" /> if the <see cref="P:System.Drawing.PointF.X" /> and <see cref="P:System.Drawing.PointF.Y" /> values of the left and right <see cref="T:System.Drawing.PointF" /> structures are equal; otherwise, <see langword="false" />.</returns>
1463     </member>
1464     <member name="M:System.Drawing.PointF.op_Explicit(System.Drawing.PointF)~System.Numerics.Vector2">
1465       <summary>Converts the specified <see cref="T:System.Drawing.PointF" /> to a <see cref="T:System.Numerics.Vector2" />.</summary>
1466       <param name="point">The point to convert from.</param>
1467       <returns>The vector that represents the converted <see cref="T:System.Drawing.PointF" />.</returns>
1468     </member>
1469     <member name="M:System.Drawing.PointF.op_Explicit(System.Numerics.Vector2)~System.Drawing.PointF">
1470       <summary>Converts the specified <see cref="T:System.Numerics.Vector2" /> to a <see cref="T:System.Drawing.PointF" />.</summary>
1471       <param name="vector">The vector to convert.</param>
1472       <returns>The pair of coordinates that represents the converted <see cref="T:System.Numerics.Vector2" />.</returns>
1473     </member>
1474     <member name="M:System.Drawing.PointF.op_Inequality(System.Drawing.PointF,System.Drawing.PointF)">
1475       <summary>Determines whether the coordinates of the specified points are not equal.</summary>
1476       <param name="left">A <see cref="T:System.Drawing.PointF" /> to compare.</param>
1477       <param name="right">A <see cref="T:System.Drawing.PointF" /> to compare.</param>
1478       <returns>
1479         <see langword="true" /> to indicate the <see cref="P:System.Drawing.PointF.X" /> and <see cref="P:System.Drawing.PointF.Y" /> values of <paramref name="left" /> and <paramref name="right" /> are not equal; otherwise, <see langword="false" />.</returns>
1480     </member>
1481     <member name="M:System.Drawing.PointF.op_Subtraction(System.Drawing.PointF,System.Drawing.Size)">
1482       <summary>Translates a <see cref="T:System.Drawing.PointF" /> by the negative of a given <see cref="T:System.Drawing.Size" />.</summary>
1483       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1484       <param name="sz">The <see cref="T:System.Drawing.Size" /> that specifies the numbers to subtract from the coordinates of <paramref name="pt" />.</param>
1485       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1486     </member>
1487     <member name="M:System.Drawing.PointF.op_Subtraction(System.Drawing.PointF,System.Drawing.SizeF)">
1488       <summary>Translates a <see cref="T:System.Drawing.PointF" /> by the negative of a specified <see cref="T:System.Drawing.SizeF" />.</summary>
1489       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1490       <param name="sz">The <see cref="T:System.Drawing.SizeF" /> that specifies the numbers to subtract from the coordinates of <paramref name="pt" />.</param>
1491       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1492     </member>
1493     <member name="M:System.Drawing.PointF.Subtract(System.Drawing.PointF,System.Drawing.Size)">
1494       <summary>Translates a <see cref="T:System.Drawing.PointF" /> by the negative of a specified size.</summary>
1495       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1496       <param name="sz">The <see cref="T:System.Drawing.Size" /> that specifies the numbers to subtract from the coordinates of <paramref name="pt" />.</param>
1497       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1498     </member>
1499     <member name="M:System.Drawing.PointF.Subtract(System.Drawing.PointF,System.Drawing.SizeF)">
1500       <summary>Translates a <see cref="T:System.Drawing.PointF" /> by the negative of a specified size.</summary>
1501       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to translate.</param>
1502       <param name="sz">The <see cref="T:System.Drawing.SizeF" /> that specifies the numbers to subtract from the coordinates of <paramref name="pt" />.</param>
1503       <returns>The translated <see cref="T:System.Drawing.PointF" />.</returns>
1504     </member>
1505     <member name="M:System.Drawing.PointF.ToString">
1506       <summary>Converts this <see cref="T:System.Drawing.PointF" /> to a human readable string.</summary>
1507       <returns>A string that represents this <see cref="T:System.Drawing.PointF" />.</returns>
1508     </member>
1509     <member name="M:System.Drawing.PointF.ToVector2">
1510       <summary>Creates a new <see cref="T:System.Numerics.Vector2" /> from this <see cref="T:System.Drawing.PointF" />.</summary>
1511       <returns>The vector that was created from this <see cref="T:System.Drawing.PointF" />.</returns>
1512     </member>
1513     <member name="P:System.Drawing.PointF.IsEmpty">
1514       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.PointF" /> is empty.</summary>
1515       <returns>
1516         <see langword="true" /> if both <see cref="P:System.Drawing.PointF.X" /> and <see cref="P:System.Drawing.PointF.Y" /> are 0; otherwise, <see langword="false" />.</returns>
1517     </member>
1518     <member name="P:System.Drawing.PointF.X">
1519       <summary>Gets or sets the x-coordinate of this <see cref="T:System.Drawing.PointF" />.</summary>
1520       <returns>The x-coordinate of this <see cref="T:System.Drawing.PointF" />.</returns>
1521     </member>
1522     <member name="P:System.Drawing.PointF.Y">
1523       <summary>Gets or sets the y-coordinate of this <see cref="T:System.Drawing.PointF" />.</summary>
1524       <returns>The y-coordinate of this <see cref="T:System.Drawing.PointF" />.</returns>
1525     </member>
1526     <member name="T:System.Drawing.Rectangle">
1527       <summary>Stores a set of four integers that represent the location and size of a rectangle.</summary>
1528     </member>
1529     <member name="F:System.Drawing.Rectangle.Empty">
1530       <summary>Represents a <see cref="T:System.Drawing.Rectangle" /> structure with its properties left uninitialized.</summary>
1531     </member>
1532     <member name="M:System.Drawing.Rectangle.#ctor(System.Drawing.Point,System.Drawing.Size)">
1533       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Rectangle" /> class with the specified location and size.</summary>
1534       <param name="location">A <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of the rectangular region.</param>
1535       <param name="size">A <see cref="T:System.Drawing.Size" /> that represents the width and height of the rectangular region.</param>
1536     </member>
1537     <member name="M:System.Drawing.Rectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
1538       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Rectangle" /> class with the specified location and size.</summary>
1539       <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
1540       <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
1541       <param name="width">The width of the rectangle.</param>
1542       <param name="height">The height of the rectangle.</param>
1543     </member>
1544     <member name="M:System.Drawing.Rectangle.Ceiling(System.Drawing.RectangleF)">
1545       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF" /> structure to a <see cref="T:System.Drawing.Rectangle" /> structure by rounding the <see cref="T:System.Drawing.RectangleF" /> values to the next higher integer values.</summary>
1546       <param name="value">The <see cref="T:System.Drawing.RectangleF" /> structure to be converted.</param>
1547       <returns>Returns a <see cref="T:System.Drawing.Rectangle" />.</returns>
1548     </member>
1549     <member name="M:System.Drawing.Rectangle.Contains(System.Drawing.Point)">
1550       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1551       <param name="pt">The <see cref="T:System.Drawing.Point" /> to test.</param>
1552       <returns>This method returns <see langword="true" /> if the point represented by <paramref name="pt" /> is contained within this <see cref="T:System.Drawing.Rectangle" /> structure; otherwise <see langword="false" />.</returns>
1553     </member>
1554     <member name="M:System.Drawing.Rectangle.Contains(System.Drawing.Rectangle)">
1555       <summary>Determines if the rectangular region represented by <paramref name="rect" /> is entirely contained within this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1556       <param name="rect">The <see cref="T:System.Drawing.Rectangle" /> to test.</param>
1557       <returns>This method returns <see langword="true" /> if the rectangular region represented by <paramref name="rect" /> is entirely contained within this <see cref="T:System.Drawing.Rectangle" /> structure; otherwise <see langword="false" />.</returns>
1558     </member>
1559     <member name="M:System.Drawing.Rectangle.Contains(System.Int32,System.Int32)">
1560       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1561       <param name="x">The x-coordinate of the point to test.</param>
1562       <param name="y">The y-coordinate of the point to test.</param>
1563       <returns>This method returns <see langword="true" /> if the point defined by <paramref name="x" /> and <paramref name="y" /> is contained within this <see cref="T:System.Drawing.Rectangle" /> structure; otherwise <see langword="false" />.</returns>
1564     </member>
1565     <member name="M:System.Drawing.Rectangle.Equals(System.Drawing.Rectangle)">
1566       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
1567       <param name="other">An object to compare with this object.</param>
1568       <returns>
1569         <see langword="true" /> if the current object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1570     </member>
1571     <member name="M:System.Drawing.Rectangle.Equals(System.Object)">
1572       <summary>Tests whether <paramref name="obj" /> is a <see cref="T:System.Drawing.Rectangle" /> structure with the same location and size of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1573       <param name="obj">The <see cref="T:System.Object" /> to test.</param>
1574       <returns>This method returns <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.Rectangle" /> structure and its <see cref="P:System.Drawing.Rectangle.X" />, <see cref="P:System.Drawing.Rectangle.Y" />, <see cref="P:System.Drawing.Rectangle.Width" />, and <see cref="P:System.Drawing.Rectangle.Height" /> properties are equal to the corresponding properties of this <see cref="T:System.Drawing.Rectangle" /> structure; otherwise, <see langword="false" />.</returns>
1575     </member>
1576     <member name="M:System.Drawing.Rectangle.FromLTRB(System.Int32,System.Int32,System.Int32,System.Int32)">
1577       <summary>Creates a <see cref="T:System.Drawing.Rectangle" /> structure with the specified edge locations.</summary>
1578       <param name="left">The x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</param>
1579       <param name="top">The y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</param>
1580       <param name="right">The x-coordinate of the lower-right corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</param>
1581       <param name="bottom">The y-coordinate of the lower-right corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</param>
1582       <returns>The new <see cref="T:System.Drawing.Rectangle" /> that this method creates.</returns>
1583     </member>
1584     <member name="M:System.Drawing.Rectangle.GetHashCode">
1585       <summary>Returns the hash code for this <see cref="T:System.Drawing.Rectangle" /> structure. For information about the use of hash codes, see <see cref="M:System.Object.GetHashCode" /> .</summary>
1586       <returns>An integer that represents the hash code for this rectangle.</returns>
1587     </member>
1588     <member name="M:System.Drawing.Rectangle.Inflate(System.Drawing.Rectangle,System.Int32,System.Int32)">
1589       <summary>Creates and returns an enlarged copy of the specified <see cref="T:System.Drawing.Rectangle" /> structure. The copy is enlarged by the specified amount. The original <see cref="T:System.Drawing.Rectangle" /> structure remains unmodified.</summary>
1590       <param name="rect">The <see cref="T:System.Drawing.Rectangle" /> with which to start. This rectangle is not modified.</param>
1591       <param name="x">The amount to inflate this <see cref="T:System.Drawing.Rectangle" /> horizontally.</param>
1592       <param name="y">The amount to inflate this <see cref="T:System.Drawing.Rectangle" /> vertically.</param>
1593       <returns>The enlarged <see cref="T:System.Drawing.Rectangle" />.</returns>
1594     </member>
1595     <member name="M:System.Drawing.Rectangle.Inflate(System.Drawing.Size)">
1596       <summary>Enlarges this <see cref="T:System.Drawing.Rectangle" /> by the specified amount.</summary>
1597       <param name="size">The amount to inflate this rectangle.</param>
1598     </member>
1599     <member name="M:System.Drawing.Rectangle.Inflate(System.Int32,System.Int32)">
1600       <summary>Enlarges this <see cref="T:System.Drawing.Rectangle" /> by the specified amount.</summary>
1601       <param name="width">The amount to inflate this <see cref="T:System.Drawing.Rectangle" /> horizontally.</param>
1602       <param name="height">The amount to inflate this <see cref="T:System.Drawing.Rectangle" /> vertically.</param>
1603     </member>
1604     <member name="M:System.Drawing.Rectangle.Intersect(System.Drawing.Rectangle)">
1605       <summary>Replaces this <see cref="T:System.Drawing.Rectangle" /> with the intersection of itself and the specified <see cref="T:System.Drawing.Rectangle" />.</summary>
1606       <param name="rect">The <see cref="T:System.Drawing.Rectangle" /> with which to intersect.</param>
1607     </member>
1608     <member name="M:System.Drawing.Rectangle.Intersect(System.Drawing.Rectangle,System.Drawing.Rectangle)">
1609       <summary>Returns a third <see cref="T:System.Drawing.Rectangle" /> structure that represents the intersection of two other <see cref="T:System.Drawing.Rectangle" /> structures. If there is no intersection, an empty <see cref="T:System.Drawing.Rectangle" /> is returned.</summary>
1610       <param name="a">A rectangle to intersect.</param>
1611       <param name="b">A rectangle to intersect.</param>
1612       <returns>A <see cref="T:System.Drawing.Rectangle" /> that represents the intersection of <paramref name="a" /> and <paramref name="b" />.</returns>
1613     </member>
1614     <member name="M:System.Drawing.Rectangle.IntersectsWith(System.Drawing.Rectangle)">
1615       <summary>Determines if this rectangle intersects with <paramref name="rect" />.</summary>
1616       <param name="rect">The rectangle to test.</param>
1617       <returns>This method returns <see langword="true" /> if there is any intersection, otherwise <see langword="false" />.</returns>
1618     </member>
1619     <member name="M:System.Drawing.Rectangle.Offset(System.Drawing.Point)">
1620       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
1621       <param name="pos">Amount to offset the location.</param>
1622     </member>
1623     <member name="M:System.Drawing.Rectangle.Offset(System.Int32,System.Int32)">
1624       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
1625       <param name="x">The horizontal offset.</param>
1626       <param name="y">The vertical offset.</param>
1627     </member>
1628     <member name="M:System.Drawing.Rectangle.op_Equality(System.Drawing.Rectangle,System.Drawing.Rectangle)">
1629       <summary>Tests whether two <see cref="T:System.Drawing.Rectangle" /> structures have equal location and size.</summary>
1630       <param name="left">The <see cref="T:System.Drawing.Rectangle" /> structure that is to the left of the equality operator.</param>
1631       <param name="right">The <see cref="T:System.Drawing.Rectangle" /> structure that is to the right of the equality operator.</param>
1632       <returns>This operator returns <see langword="true" /> if the two <see cref="T:System.Drawing.Rectangle" /> structures have equal <see cref="P:System.Drawing.Rectangle.X" />, <see cref="P:System.Drawing.Rectangle.Y" />, <see cref="P:System.Drawing.Rectangle.Width" />, and <see cref="P:System.Drawing.Rectangle.Height" /> properties.</returns>
1633     </member>
1634     <member name="M:System.Drawing.Rectangle.op_Inequality(System.Drawing.Rectangle,System.Drawing.Rectangle)">
1635       <summary>Tests whether two <see cref="T:System.Drawing.Rectangle" /> structures differ in location or size.</summary>
1636       <param name="left">The <see cref="T:System.Drawing.Rectangle" /> structure that is to the left of the inequality operator.</param>
1637       <param name="right">The <see cref="T:System.Drawing.Rectangle" /> structure that is to the right of the inequality operator.</param>
1638       <returns>This operator returns <see langword="true" /> if any of the <see cref="P:System.Drawing.Rectangle.X" />, <see cref="P:System.Drawing.Rectangle.Y" />, <see cref="P:System.Drawing.Rectangle.Width" /> or <see cref="P:System.Drawing.Rectangle.Height" /> properties of the two <see cref="T:System.Drawing.Rectangle" /> structures are unequal; otherwise <see langword="false" />.</returns>
1639     </member>
1640     <member name="M:System.Drawing.Rectangle.Round(System.Drawing.RectangleF)">
1641       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF" /> to a <see cref="T:System.Drawing.Rectangle" /> by rounding the <see cref="T:System.Drawing.RectangleF" /> values to the nearest integer values.</summary>
1642       <param name="value">The <see cref="T:System.Drawing.RectangleF" /> to be converted.</param>
1643       <returns>The rounded integer value of the <see cref="T:System.Drawing.Rectangle" />.</returns>
1644     </member>
1645     <member name="M:System.Drawing.Rectangle.ToString">
1646       <summary>Converts the attributes of this <see cref="T:System.Drawing.Rectangle" /> to a human-readable string.</summary>
1647       <returns>A string that contains the position, width, and height of this <see cref="T:System.Drawing.Rectangle" /> structure ¾ for example, {X=20, Y=20, Width=100, Height=50}.</returns>
1648     </member>
1649     <member name="M:System.Drawing.Rectangle.Truncate(System.Drawing.RectangleF)">
1650       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF" /> to a <see cref="T:System.Drawing.Rectangle" /> by truncating the <see cref="T:System.Drawing.RectangleF" /> values.</summary>
1651       <param name="value">The <see cref="T:System.Drawing.RectangleF" /> to be converted.</param>
1652       <returns>The truncated value of the  <see cref="T:System.Drawing.Rectangle" />.</returns>
1653     </member>
1654     <member name="M:System.Drawing.Rectangle.Union(System.Drawing.Rectangle,System.Drawing.Rectangle)">
1655       <summary>Gets a <see cref="T:System.Drawing.Rectangle" /> structure that contains the union of two <see cref="T:System.Drawing.Rectangle" /> structures.</summary>
1656       <param name="a">A rectangle to union.</param>
1657       <param name="b">A rectangle to union.</param>
1658       <returns>A <see cref="T:System.Drawing.Rectangle" /> structure that bounds the union of the two <see cref="T:System.Drawing.Rectangle" /> structures.</returns>
1659     </member>
1660     <member name="P:System.Drawing.Rectangle.Bottom">
1661       <summary>Gets the y-coordinate that is the sum of the <see cref="P:System.Drawing.Rectangle.Y" /> and <see cref="P:System.Drawing.Rectangle.Height" /> property values of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1662       <returns>The y-coordinate that is the sum of <see cref="P:System.Drawing.Rectangle.Y" /> and <see cref="P:System.Drawing.Rectangle.Height" /> of this <see cref="T:System.Drawing.Rectangle" />.</returns>
1663     </member>
1664     <member name="P:System.Drawing.Rectangle.Height">
1665       <summary>Gets or sets the height of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1666       <returns>The height of this <see cref="T:System.Drawing.Rectangle" /> structure. The default is 0.</returns>
1667     </member>
1668     <member name="P:System.Drawing.Rectangle.IsEmpty">
1669       <summary>Tests whether all numeric properties of this <see cref="T:System.Drawing.Rectangle" /> have values of zero.</summary>
1670       <returns>This property returns <see langword="true" /> if the <see cref="P:System.Drawing.Rectangle.Width" />, <see cref="P:System.Drawing.Rectangle.Height" />, <see cref="P:System.Drawing.Rectangle.X" />, and <see cref="P:System.Drawing.Rectangle.Y" /> properties of this <see cref="T:System.Drawing.Rectangle" /> all have values of zero; otherwise, <see langword="false" />.</returns>
1671     </member>
1672     <member name="P:System.Drawing.Rectangle.Left">
1673       <summary>Gets the x-coordinate of the left edge of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1674       <returns>The x-coordinate of the left edge of this <see cref="T:System.Drawing.Rectangle" /> structure.</returns>
1675     </member>
1676     <member name="P:System.Drawing.Rectangle.Location">
1677       <summary>Gets or sets the coordinates of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1678       <returns>A <see cref="T:System.Drawing.Point" /> that represents the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</returns>
1679     </member>
1680     <member name="P:System.Drawing.Rectangle.Right">
1681       <summary>Gets the x-coordinate that is the sum of <see cref="P:System.Drawing.Rectangle.X" /> and <see cref="P:System.Drawing.Rectangle.Width" /> property values of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1682       <returns>The x-coordinate that is the sum of <see cref="P:System.Drawing.Rectangle.X" /> and <see cref="P:System.Drawing.Rectangle.Width" /> of this <see cref="T:System.Drawing.Rectangle" />.</returns>
1683     </member>
1684     <member name="P:System.Drawing.Rectangle.Size">
1685       <summary>Gets or sets the size of this <see cref="T:System.Drawing.Rectangle" />.</summary>
1686       <returns>A <see cref="T:System.Drawing.Size" /> that represents the width and height of this <see cref="T:System.Drawing.Rectangle" /> structure.</returns>
1687     </member>
1688     <member name="P:System.Drawing.Rectangle.Top">
1689       <summary>Gets the y-coordinate of the top edge of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1690       <returns>The y-coordinate of the top edge of this <see cref="T:System.Drawing.Rectangle" /> structure.</returns>
1691     </member>
1692     <member name="P:System.Drawing.Rectangle.Width">
1693       <summary>Gets or sets the width of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1694       <returns>The width of this <see cref="T:System.Drawing.Rectangle" /> structure. The default is 0.</returns>
1695     </member>
1696     <member name="P:System.Drawing.Rectangle.X">
1697       <summary>Gets or sets the x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1698       <returns>The x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure. The default is 0.</returns>
1699     </member>
1700     <member name="P:System.Drawing.Rectangle.Y">
1701       <summary>Gets or sets the y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure.</summary>
1702       <returns>The y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle" /> structure. The default is 0.</returns>
1703     </member>
1704     <member name="T:System.Drawing.RectangleF">
1705       <summary>Stores a set of four floating-point numbers that represent the location and size of a rectangle. For more advanced region functions, use a <see cref="T:System.Drawing.Region" /> object.</summary>
1706     </member>
1707     <member name="F:System.Drawing.RectangleF.Empty">
1708       <summary>Represents an instance of the <see cref="T:System.Drawing.RectangleF" /> class with its members uninitialized.</summary>
1709     </member>
1710     <member name="M:System.Drawing.RectangleF.#ctor(System.Drawing.PointF,System.Drawing.SizeF)">
1711       <summary>Initializes a new instance of the <see cref="T:System.Drawing.RectangleF" /> class with the specified location and size.</summary>
1712       <param name="location">A <see cref="T:System.Drawing.PointF" /> that represents the upper-left corner of the rectangular region.</param>
1713       <param name="size">A <see cref="T:System.Drawing.SizeF" /> that represents the width and height of the rectangular region.</param>
1714     </member>
1715     <member name="M:System.Drawing.RectangleF.#ctor(System.Numerics.Vector4)">
1716       <summary>Initializes a new instance of the <see cref="T:System.Drawing.RectangleF" /> struct from the specified <see cref="T:System.Numerics.Vector4" />.</summary>
1717       <param name="vector">The source vector.</param>
1718     </member>
1719     <member name="M:System.Drawing.RectangleF.#ctor(System.Single,System.Single,System.Single,System.Single)">
1720       <summary>Initializes a new instance of the <see cref="T:System.Drawing.RectangleF" /> class with the specified location and size.</summary>
1721       <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
1722       <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
1723       <param name="width">The width of the rectangle.</param>
1724       <param name="height">The height of the rectangle.</param>
1725     </member>
1726     <member name="M:System.Drawing.RectangleF.Contains(System.Drawing.PointF)">
1727       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1728       <param name="pt">The <see cref="T:System.Drawing.PointF" /> to test.</param>
1729       <returns>
1730         <see langword="true" /> if the point represented by the <paramref name="pt" /> parameter is contained within this <see cref="T:System.Drawing.RectangleF" /> structure; otherwise, <see langword="false" />.</returns>
1731     </member>
1732     <member name="M:System.Drawing.RectangleF.Contains(System.Drawing.RectangleF)">
1733       <summary>Determines if the rectangular region represented by <paramref name="rect" /> is entirely contained within this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1734       <param name="rect">The <see cref="T:System.Drawing.RectangleF" /> to test.</param>
1735       <returns>
1736         <see langword="true" /> if the rectangular region represented by <paramref name="rect" /> is entirely contained within the rectangular region represented by this <see cref="T:System.Drawing.RectangleF" />; otherwise, <see langword="false" />.</returns>
1737     </member>
1738     <member name="M:System.Drawing.RectangleF.Contains(System.Single,System.Single)">
1739       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1740       <param name="x">The x-coordinate of the point to test.</param>
1741       <param name="y">The y-coordinate of the point to test.</param>
1742       <returns>
1743         <see langword="true" /> if the point defined by <paramref name="x" /> and <paramref name="y" /> is contained within this <see cref="T:System.Drawing.RectangleF" /> structure; otherwise, <see langword="false" />.</returns>
1744     </member>
1745     <member name="M:System.Drawing.RectangleF.Equals(System.Drawing.RectangleF)">
1746       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
1747       <param name="other">An object to compare with this object.</param>
1748       <returns>
1749         <see langword="true" /> if the current object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1750     </member>
1751     <member name="M:System.Drawing.RectangleF.Equals(System.Object)">
1752       <summary>Tests whether <paramref name="obj" /> is a <see cref="T:System.Drawing.RectangleF" /> with the same location and size of this <see cref="T:System.Drawing.RectangleF" />.</summary>
1753       <param name="obj">The <see cref="T:System.Object" /> to test.</param>
1754       <returns>
1755         <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.RectangleF" /> and its <see langword="X" />, <see langword="Y" />, <see langword="Width" />, and <see langword="Height" /> properties are equal to the corresponding properties of this <see cref="T:System.Drawing.RectangleF" />; otherwise, <see langword="false" />.</returns>
1756     </member>
1757     <member name="M:System.Drawing.RectangleF.FromLTRB(System.Single,System.Single,System.Single,System.Single)">
1758       <summary>Creates a <see cref="T:System.Drawing.RectangleF" /> structure with upper-left corner and lower-right corner at the specified locations.</summary>
1759       <param name="left">The x-coordinate of the upper-left corner of the rectangular region.</param>
1760       <param name="top">The y-coordinate of the upper-left corner of the rectangular region.</param>
1761       <param name="right">The x-coordinate of the lower-right corner of the rectangular region.</param>
1762       <param name="bottom">The y-coordinate of the lower-right corner of the rectangular region.</param>
1763       <returns>The new <see cref="T:System.Drawing.RectangleF" /> that this method creates.</returns>
1764     </member>
1765     <member name="M:System.Drawing.RectangleF.GetHashCode">
1766       <summary>Gets the hash code for this <see cref="T:System.Drawing.RectangleF" /> structure. For information about the use of hash codes, see <see langword="Object.GetHashCode" />.</summary>
1767       <returns>The hash code for this <see cref="T:System.Drawing.RectangleF" />.</returns>
1768     </member>
1769     <member name="M:System.Drawing.RectangleF.Inflate(System.Drawing.RectangleF,System.Single,System.Single)">
1770       <summary>Creates and returns an enlarged copy of the specified <see cref="T:System.Drawing.RectangleF" /> structure. The copy is enlarged by the specified amount and the original rectangle remains unmodified.</summary>
1771       <param name="rect">The <see cref="T:System.Drawing.RectangleF" /> to be copied. This rectangle is not modified.</param>
1772       <param name="x">The amount to enlarge the copy of the rectangle horizontally.</param>
1773       <param name="y">The amount to enlarge the copy of the rectangle vertically.</param>
1774       <returns>The enlarged <see cref="T:System.Drawing.RectangleF" />.</returns>
1775     </member>
1776     <member name="M:System.Drawing.RectangleF.Inflate(System.Drawing.SizeF)">
1777       <summary>Enlarges this <see cref="T:System.Drawing.RectangleF" /> by the specified amount.</summary>
1778       <param name="size">The amount to inflate this rectangle.</param>
1779     </member>
1780     <member name="M:System.Drawing.RectangleF.Inflate(System.Single,System.Single)">
1781       <summary>Enlarges this <see cref="T:System.Drawing.RectangleF" /> structure by the specified amount.</summary>
1782       <param name="x">The amount to inflate this <see cref="T:System.Drawing.RectangleF" /> structure horizontally.</param>
1783       <param name="y">The amount to inflate this <see cref="T:System.Drawing.RectangleF" /> structure vertically.</param>
1784     </member>
1785     <member name="M:System.Drawing.RectangleF.Intersect(System.Drawing.RectangleF)">
1786       <summary>Replaces this <see cref="T:System.Drawing.RectangleF" /> structure with the intersection of itself and the specified <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1787       <param name="rect">The rectangle to intersect.</param>
1788     </member>
1789     <member name="M:System.Drawing.RectangleF.Intersect(System.Drawing.RectangleF,System.Drawing.RectangleF)">
1790       <summary>Returns a <see cref="T:System.Drawing.RectangleF" /> structure that represents the intersection of two rectangles. If there is no intersection, and empty <see cref="T:System.Drawing.RectangleF" /> is returned.</summary>
1791       <param name="a">A rectangle to intersect.</param>
1792       <param name="b">A rectangle to intersect.</param>
1793       <returns>A third <see cref="T:System.Drawing.RectangleF" /> structure the size of which represents the overlapped area of the two specified rectangles.</returns>
1794     </member>
1795     <member name="M:System.Drawing.RectangleF.IntersectsWith(System.Drawing.RectangleF)">
1796       <summary>Determines if this rectangle intersects with <paramref name="rect" />.</summary>
1797       <param name="rect">The rectangle to test.</param>
1798       <returns>
1799         <see langword="true" /> if there is any intersection; otherwise, <see langword="false" />.</returns>
1800     </member>
1801     <member name="M:System.Drawing.RectangleF.Offset(System.Drawing.PointF)">
1802       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
1803       <param name="pos">The amount to offset the location.</param>
1804     </member>
1805     <member name="M:System.Drawing.RectangleF.Offset(System.Single,System.Single)">
1806       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
1807       <param name="x">The amount to offset the location horizontally.</param>
1808       <param name="y">The amount to offset the location vertically.</param>
1809     </member>
1810     <member name="M:System.Drawing.RectangleF.op_Equality(System.Drawing.RectangleF,System.Drawing.RectangleF)">
1811       <summary>Tests whether two <see cref="T:System.Drawing.RectangleF" /> structures have equal location and size.</summary>
1812       <param name="left">The <see cref="T:System.Drawing.RectangleF" /> structure that is to the left of the equality operator.</param>
1813       <param name="right">The <see cref="T:System.Drawing.RectangleF" /> structure that is to the right of the equality operator.</param>
1814       <returns>
1815         <see langword="true" /> if the two specified <see cref="T:System.Drawing.RectangleF" /> structures have equal <see cref="P:System.Drawing.RectangleF.X" />, <see cref="P:System.Drawing.RectangleF.Y" />, <see cref="P:System.Drawing.RectangleF.Width" />, and <see cref="P:System.Drawing.RectangleF.Height" /> properties; otherwise, <see langword="false" />.</returns>
1816     </member>
1817     <member name="M:System.Drawing.RectangleF.op_Explicit(System.Drawing.RectangleF)~System.Numerics.Vector4">
1818       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF" /> to a <see cref="T:System.Numerics.Vector4" />.</summary>
1819       <param name="rectangle">The rectangle to convert.</param>
1820       <returns>The vector that represents the converted <see cref="T:System.Drawing.RectangleF" />.</returns>
1821     </member>
1822     <member name="M:System.Drawing.RectangleF.op_Explicit(System.Numerics.Vector4)~System.Drawing.RectangleF">
1823       <summary>Converts the specified <see cref="T:System.Numerics.Vector4" /> to a <see cref="T:System.Drawing.RectangleF" />.</summary>
1824       <param name="vector">The vector to convert.</param>
1825       <returns>The rectangle that represents the converted <see cref="T:System.Numerics.Vector4" />.</returns>
1826     </member>
1827     <member name="M:System.Drawing.RectangleF.op_Implicit(System.Drawing.Rectangle)~System.Drawing.RectangleF">
1828       <summary>Converts the specified <see cref="T:System.Drawing.Rectangle" /> structure to a <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1829       <param name="r">The <see cref="T:System.Drawing.Rectangle" /> structure to convert.</param>
1830       <returns>The <see cref="T:System.Drawing.RectangleF" /> structure that is converted from the specified <see cref="T:System.Drawing.Rectangle" /> structure.</returns>
1831     </member>
1832     <member name="M:System.Drawing.RectangleF.op_Inequality(System.Drawing.RectangleF,System.Drawing.RectangleF)">
1833       <summary>Tests whether two <see cref="T:System.Drawing.RectangleF" /> structures differ in location or size.</summary>
1834       <param name="left">The <see cref="T:System.Drawing.RectangleF" /> structure that is to the left of the inequality operator.</param>
1835       <param name="right">The <see cref="T:System.Drawing.RectangleF" /> structure that is to the right of the inequality operator.</param>
1836       <returns>
1837         <see langword="true" /> if any of the <see cref="P:System.Drawing.RectangleF.X" /> , <see cref="P:System.Drawing.RectangleF.Y" />, <see cref="P:System.Drawing.RectangleF.Width" />, or <see cref="P:System.Drawing.RectangleF.Height" /> properties of the two <see cref="T:System.Drawing.Rectangle" /> structures are unequal; otherwise, <see langword="false" />.</returns>
1838     </member>
1839     <member name="M:System.Drawing.RectangleF.ToString">
1840       <summary>Converts the <see langword="Location" /> and <see cref="T:System.Drawing.Size" /> of this <see cref="T:System.Drawing.RectangleF" /> to a human-readable string.</summary>
1841       <returns>A string that contains the position, width, and height of this <see cref="T:System.Drawing.RectangleF" /> structure. For example, "{X=20, Y=20, Width=100, Height=50}".</returns>
1842     </member>
1843     <member name="M:System.Drawing.RectangleF.ToVector4">
1844       <summary>Creates a new <see cref="T:System.Numerics.Vector4" /> from this <see cref="T:System.Drawing.RectangleF" />.</summary>
1845       <returns>The rectangle, converted into a new <see cref="T:System.Numerics.Vector4" /> instance.</returns>
1846     </member>
1847     <member name="M:System.Drawing.RectangleF.Union(System.Drawing.RectangleF,System.Drawing.RectangleF)">
1848       <summary>Creates the smallest possible third rectangle that can contain both of two rectangles that form a union.</summary>
1849       <param name="a">A rectangle to union.</param>
1850       <param name="b">A rectangle to union.</param>
1851       <returns>A third <see cref="T:System.Drawing.RectangleF" /> structure that contains both of the two rectangles that form the union.</returns>
1852     </member>
1853     <member name="P:System.Drawing.RectangleF.Bottom">
1854       <summary>Gets the y-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.Y" /> and <see cref="P:System.Drawing.RectangleF.Height" /> of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1855       <returns>The y-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.Y" /> and <see cref="P:System.Drawing.RectangleF.Height" /> of this <see cref="T:System.Drawing.RectangleF" /> structure.</returns>
1856     </member>
1857     <member name="P:System.Drawing.RectangleF.Height">
1858       <summary>Gets or sets the height of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1859       <returns>The height of this <see cref="T:System.Drawing.RectangleF" /> structure. The default is 0.</returns>
1860     </member>
1861     <member name="P:System.Drawing.RectangleF.IsEmpty">
1862       <summary>Gets a value that indicates whether the <see cref="P:System.Drawing.RectangleF.Width" /> or <see cref="P:System.Drawing.RectangleF.Height" /> property of this <see cref="T:System.Drawing.RectangleF" /> has a value of zero.</summary>
1863       <returns>
1864         <see langword="true" /> if the <see cref="P:System.Drawing.RectangleF.Width" /> or <see cref="P:System.Drawing.RectangleF.Height" /> property of this <see cref="T:System.Drawing.RectangleF" /> has a value of zero; otherwise, <see langword="false" />.</returns>
1865     </member>
1866     <member name="P:System.Drawing.RectangleF.Left">
1867       <summary>Gets the x-coordinate of the left edge of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1868       <returns>The x-coordinate of the left edge of this <see cref="T:System.Drawing.RectangleF" /> structure.</returns>
1869     </member>
1870     <member name="P:System.Drawing.RectangleF.Location">
1871       <summary>Gets or sets the coordinates of the upper-left corner of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1872       <returns>A <see cref="T:System.Drawing.PointF" /> that represents the upper-left corner of this <see cref="T:System.Drawing.RectangleF" /> structure.</returns>
1873     </member>
1874     <member name="P:System.Drawing.RectangleF.Right">
1875       <summary>Gets the x-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.X" /> and <see cref="P:System.Drawing.RectangleF.Width" /> of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1876       <returns>The x-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.X" /> and <see cref="P:System.Drawing.RectangleF.Width" /> of this <see cref="T:System.Drawing.RectangleF" /> structure.</returns>
1877     </member>
1878     <member name="P:System.Drawing.RectangleF.Size">
1879       <summary>Gets or sets the size of this <see cref="T:System.Drawing.RectangleF" />.</summary>
1880       <returns>A <see cref="T:System.Drawing.SizeF" /> that represents the width and height of this <see cref="T:System.Drawing.RectangleF" /> structure.</returns>
1881     </member>
1882     <member name="P:System.Drawing.RectangleF.Top">
1883       <summary>Gets the y-coordinate of the top edge of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1884       <returns>The y-coordinate of the top edge of this <see cref="T:System.Drawing.RectangleF" /> structure.</returns>
1885     </member>
1886     <member name="P:System.Drawing.RectangleF.Width">
1887       <summary>Gets or sets the width of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1888       <returns>The width of this <see cref="T:System.Drawing.RectangleF" /> structure. The default is 0.</returns>
1889     </member>
1890     <member name="P:System.Drawing.RectangleF.X">
1891       <summary>Gets or sets the x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1892       <returns>The x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF" /> structure. The default is 0.</returns>
1893     </member>
1894     <member name="P:System.Drawing.RectangleF.Y">
1895       <summary>Gets or sets the y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF" /> structure.</summary>
1896       <returns>The y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF" /> structure. The default is 0.</returns>
1897     </member>
1898     <member name="T:System.Drawing.Size">
1899       <summary>Stores an ordered pair of integers, which specify a <see cref="P:System.Drawing.Size.Height" /> and <see cref="P:System.Drawing.Size.Width" />.</summary>
1900     </member>
1901     <member name="F:System.Drawing.Size.Empty">
1902       <summary>Gets a <see cref="T:System.Drawing.Size" /> structure that has a <see cref="P:System.Drawing.Size.Height" /> and <see cref="P:System.Drawing.Size.Width" /> value of 0.</summary>
1903     </member>
1904     <member name="M:System.Drawing.Size.#ctor(System.Drawing.Point)">
1905       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Size" /> structure from the specified <see cref="T:System.Drawing.Point" /> structure.</summary>
1906       <param name="pt">The <see cref="T:System.Drawing.Point" /> structure from which to initialize this <see cref="T:System.Drawing.Size" /> structure.</param>
1907     </member>
1908     <member name="M:System.Drawing.Size.#ctor(System.Int32,System.Int32)">
1909       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Size" /> structure from the specified dimensions.</summary>
1910       <param name="width">The width component of the new <see cref="T:System.Drawing.Size" />.</param>
1911       <param name="height">The height component of the new <see cref="T:System.Drawing.Size" />.</param>
1912     </member>
1913     <member name="M:System.Drawing.Size.Add(System.Drawing.Size,System.Drawing.Size)">
1914       <summary>Adds the width and height of one <see cref="T:System.Drawing.Size" /> structure to the width and height of another <see cref="T:System.Drawing.Size" /> structure.</summary>
1915       <param name="sz1">The first <see cref="T:System.Drawing.Size" /> structure to add.</param>
1916       <param name="sz2">The second <see cref="T:System.Drawing.Size" /> structure to add.</param>
1917       <returns>A <see cref="T:System.Drawing.Size" /> structure that is the result of the addition operation.</returns>
1918     </member>
1919     <member name="M:System.Drawing.Size.Ceiling(System.Drawing.SizeF)">
1920       <summary>Converts the specified <see cref="T:System.Drawing.SizeF" /> structure to a <see cref="T:System.Drawing.Size" /> structure by rounding the values of the <see cref="T:System.Drawing.Size" /> structure to the next higher integer values.</summary>
1921       <param name="value">The <see cref="T:System.Drawing.SizeF" /> structure to convert.</param>
1922       <returns>The <see cref="T:System.Drawing.Size" /> structure this method converts to.</returns>
1923     </member>
1924     <member name="M:System.Drawing.Size.Equals(System.Drawing.Size)">
1925       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
1926       <param name="other">An object to compare with this object.</param>
1927       <returns>
1928         <see langword="true" /> if the current object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
1929     </member>
1930     <member name="M:System.Drawing.Size.Equals(System.Object)">
1931       <summary>Tests to see whether the specified object is a <see cref="T:System.Drawing.Size" /> structure with the same dimensions as this <see cref="T:System.Drawing.Size" /> structure.</summary>
1932       <param name="obj">The <see cref="T:System.Object" /> to test.</param>
1933       <returns>
1934         <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.Size" /> and has the same width and height as this <see cref="T:System.Drawing.Size" />; otherwise, <see langword="false" />.</returns>
1935     </member>
1936     <member name="M:System.Drawing.Size.GetHashCode">
1937       <summary>Returns a hash code for this <see cref="T:System.Drawing.Size" /> structure.</summary>
1938       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.Size" /> structure.</returns>
1939     </member>
1940     <member name="M:System.Drawing.Size.op_Addition(System.Drawing.Size,System.Drawing.Size)">
1941       <summary>Adds the width and height of one <see cref="T:System.Drawing.Size" /> structure to the width and height of another <see cref="T:System.Drawing.Size" /> structure.</summary>
1942       <param name="sz1">The first <see cref="T:System.Drawing.Size" /> to add.</param>
1943       <param name="sz2">The second <see cref="T:System.Drawing.Size" /> to add.</param>
1944       <returns>A <see cref="T:System.Drawing.Size" /> structure that is the result of the addition operation.</returns>
1945     </member>
1946     <member name="M:System.Drawing.Size.op_Division(System.Drawing.Size,System.Int32)">
1947       <summary>Divides the specified <see cref="T:System.Drawing.Size" /> by the specified integer.</summary>
1948       <param name="left">The dividend.</param>
1949       <param name="right">The divisor.</param>
1950       <returns>A new <see cref="T:System.Drawing.Size" />, which contains the result of dividing <paramref name="left" />'s height by <paramref name="right" /> and <paramref name="left" />'s width by <paramref name="right" />, respectively.</returns>
1951     </member>
1952     <member name="M:System.Drawing.Size.op_Division(System.Drawing.Size,System.Single)">
1953       <summary>Divides the specified <see cref="T:System.Drawing.Size" /> by the specified single-precision floating-point number.</summary>
1954       <param name="left">The dividend.</param>
1955       <param name="right">The divisor.</param>
1956       <returns>The result of dividing <paramref name="left" />'s width and height by <paramref name="right" />.</returns>
1957     </member>
1958     <member name="M:System.Drawing.Size.op_Equality(System.Drawing.Size,System.Drawing.Size)">
1959       <summary>Tests whether two <see cref="T:System.Drawing.Size" /> structures are equal.</summary>
1960       <param name="sz1">The <see cref="T:System.Drawing.Size" /> structure on the left side of the equality operator.</param>
1961       <param name="sz2">The <see cref="T:System.Drawing.Size" /> structure on the right of the equality operator.</param>
1962       <returns>
1963         <see langword="true" /> if <paramref name="sz1" /> and <paramref name="sz2" /> have equal width and height; otherwise, <see langword="false" />.</returns>
1964     </member>
1965     <member name="M:System.Drawing.Size.op_Explicit(System.Drawing.Size)~System.Drawing.Point">
1966       <summary>Converts the specified <see cref="T:System.Drawing.Size" /> structure to a <see cref="T:System.Drawing.Point" /> structure.</summary>
1967       <param name="size">The <see cref="T:System.Drawing.Size" /> structure to convert.</param>
1968       <returns>The <see cref="T:System.Drawing.Point" /> structure to which this operator converts.</returns>
1969     </member>
1970     <member name="M:System.Drawing.Size.op_Implicit(System.Drawing.Size)~System.Drawing.SizeF">
1971       <summary>Converts the specified <see cref="T:System.Drawing.Size" /> structure to a <see cref="T:System.Drawing.SizeF" /> structure.</summary>
1972       <param name="p">The <see cref="T:System.Drawing.Size" /> structure to convert.</param>
1973       <returns>The <see cref="T:System.Drawing.SizeF" /> structure to which this operator converts.</returns>
1974     </member>
1975     <member name="M:System.Drawing.Size.op_Inequality(System.Drawing.Size,System.Drawing.Size)">
1976       <summary>Tests whether two <see cref="T:System.Drawing.Size" /> structures are different.</summary>
1977       <param name="sz1">The <see cref="T:System.Drawing.Size" /> structure on the left of the inequality operator.</param>
1978       <param name="sz2">The <see cref="T:System.Drawing.Size" /> structure on the right of the inequality operator.</param>
1979       <returns>
1980         <see langword="true" /> if <paramref name="sz1" /> and <paramref name="sz2" /> differ either in width or height; <see langword="false" /> if <paramref name="sz1" /> and <paramref name="sz2" /> are equal.</returns>
1981     </member>
1982     <member name="M:System.Drawing.Size.op_Multiply(System.Drawing.Size,System.Int32)">
1983       <summary>Multiplies the specified <see cref="T:System.Drawing.Size" /> by the specified integer.</summary>
1984       <param name="left">The multiplicand.</param>
1985       <param name="right">The multiplier.</param>
1986       <returns>The result of multiplying <paramref name="left" />'s width and height by <paramref name="right" />.</returns>
1987     </member>
1988     <member name="M:System.Drawing.Size.op_Multiply(System.Drawing.Size,System.Single)">
1989       <summary>Multiplies the specified <see cref="T:System.Drawing.Size" /> by the specified single-precision floating-point number.</summary>
1990       <param name="left">The multiplicand.</param>
1991       <param name="right">The multiplier.</param>
1992       <returns>The result of multiplying <paramref name="left" />'s width and height by <paramref name="right" />.</returns>
1993     </member>
1994     <member name="M:System.Drawing.Size.op_Multiply(System.Int32,System.Drawing.Size)">
1995       <summary>Multiplies the specified integer by the specified <see cref="T:System.Drawing.Size" />.</summary>
1996       <param name="left">The multiplier.</param>
1997       <param name="right">The multiplicand.</param>
1998       <returns>The result of multiplying <paramref name="right" />'s width and height by <paramref name="left" />.</returns>
1999     </member>
2000     <member name="M:System.Drawing.Size.op_Multiply(System.Single,System.Drawing.Size)">
2001       <summary>Multiplies the specified single-precision floating-point number by the specified <see cref="T:System.Drawing.Size" />.</summary>
2002       <param name="left">The multiplier.</param>
2003       <param name="right">The multiplicand.</param>
2004       <returns>The result of multiplying <paramref name="right" />'s width and height by <paramref name="left" />.</returns>
2005     </member>
2006     <member name="M:System.Drawing.Size.op_Subtraction(System.Drawing.Size,System.Drawing.Size)">
2007       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.Size" /> structure from the width and height of another <see cref="T:System.Drawing.Size" /> structure.</summary>
2008       <param name="sz1">The <see cref="T:System.Drawing.Size" /> structure on the left side of the subtraction operator.</param>
2009       <param name="sz2">The <see cref="T:System.Drawing.Size" /> structure on the right side of the subtraction operator.</param>
2010       <returns>A <see cref="T:System.Drawing.Size" /> structure that is the result of the subtraction operation.</returns>
2011     </member>
2012     <member name="M:System.Drawing.Size.Round(System.Drawing.SizeF)">
2013       <summary>Converts the specified <see cref="T:System.Drawing.SizeF" /> structure to a <see cref="T:System.Drawing.Size" /> structure by rounding the values of the <see cref="T:System.Drawing.SizeF" /> structure to the nearest integer values.</summary>
2014       <param name="value">The <see cref="T:System.Drawing.SizeF" /> structure to convert.</param>
2015       <returns>The <see cref="T:System.Drawing.Size" /> structure this method converts to.</returns>
2016     </member>
2017     <member name="M:System.Drawing.Size.Subtract(System.Drawing.Size,System.Drawing.Size)">
2018       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.Size" /> structure from the width and height of another <see cref="T:System.Drawing.Size" /> structure.</summary>
2019       <param name="sz1">The <see cref="T:System.Drawing.Size" /> structure on the left side of the subtraction operator.</param>
2020       <param name="sz2">The <see cref="T:System.Drawing.Size" /> structure on the right side of the subtraction operator.</param>
2021       <returns>A <see cref="T:System.Drawing.Size" /> structure that is a result of the subtraction operation.</returns>
2022     </member>
2023     <member name="M:System.Drawing.Size.ToString">
2024       <summary>Creates a human-readable string that represents this <see cref="T:System.Drawing.Size" /> structure.</summary>
2025       <returns>A string that represents this <see cref="T:System.Drawing.Size" />.</returns>
2026     </member>
2027     <member name="M:System.Drawing.Size.Truncate(System.Drawing.SizeF)">
2028       <summary>Converts the specified <see cref="T:System.Drawing.SizeF" /> structure to a <see cref="T:System.Drawing.Size" /> structure by truncating the values of the <see cref="T:System.Drawing.SizeF" /> structure to the next lower integer values.</summary>
2029       <param name="value">The <see cref="T:System.Drawing.SizeF" /> structure to convert.</param>
2030       <returns>The <see cref="T:System.Drawing.Size" /> structure this method converts to.</returns>
2031     </member>
2032     <member name="P:System.Drawing.Size.Height">
2033       <summary>Gets or sets the vertical component of this <see cref="T:System.Drawing.Size" /> structure.</summary>
2034       <returns>The vertical component of this <see cref="T:System.Drawing.Size" /> structure, typically measured in pixels.</returns>
2035     </member>
2036     <member name="P:System.Drawing.Size.IsEmpty">
2037       <summary>Tests whether this <see cref="T:System.Drawing.Size" /> structure has width and height of 0.</summary>
2038       <returns>This property returns <see langword="true" /> when this <see cref="T:System.Drawing.Size" /> structure has both a width and height of 0; otherwise, <see langword="false" />.</returns>
2039     </member>
2040     <member name="P:System.Drawing.Size.Width">
2041       <summary>Gets or sets the horizontal component of this <see cref="T:System.Drawing.Size" /> structure.</summary>
2042       <returns>The horizontal component of this <see cref="T:System.Drawing.Size" /> structure, typically measured in pixels.</returns>
2043     </member>
2044     <member name="T:System.Drawing.SizeF">
2045       <summary>Stores an ordered pair of floating-point numbers, typically the width and height of a rectangle.</summary>
2046     </member>
2047     <member name="F:System.Drawing.SizeF.Empty">
2048       <summary>Gets a <see cref="T:System.Drawing.SizeF" /> structure that has a <see cref="P:System.Drawing.SizeF.Height" /> and <see cref="P:System.Drawing.SizeF.Width" /> value of 0.</summary>
2049     </member>
2050     <member name="M:System.Drawing.SizeF.#ctor(System.Drawing.PointF)">
2051       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF" /> structure from the specified <see cref="T:System.Drawing.PointF" /> structure.</summary>
2052       <param name="pt">The <see cref="T:System.Drawing.PointF" /> structure from which to initialize this <see cref="T:System.Drawing.SizeF" /> structure.</param>
2053     </member>
2054     <member name="M:System.Drawing.SizeF.#ctor(System.Drawing.SizeF)">
2055       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF" /> structure from the specified existing <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2056       <param name="size">The <see cref="T:System.Drawing.SizeF" /> structure from which to create the new <see cref="T:System.Drawing.SizeF" /> structure.</param>
2057     </member>
2058     <member name="M:System.Drawing.SizeF.#ctor(System.Numerics.Vector2)">
2059       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF" /> struct from the specified <see cref="T:System.Numerics.Vector2" />.</summary>
2060       <param name="vector">The source vector.</param>
2061     </member>
2062     <member name="M:System.Drawing.SizeF.#ctor(System.Single,System.Single)">
2063       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF" /> structure from the specified dimensions.</summary>
2064       <param name="width">The width component of the new <see cref="T:System.Drawing.SizeF" /> structure.</param>
2065       <param name="height">The height component of the new <see cref="T:System.Drawing.SizeF" /> structure.</param>
2066     </member>
2067     <member name="M:System.Drawing.SizeF.Add(System.Drawing.SizeF,System.Drawing.SizeF)">
2068       <summary>Adds the width and height of one <see cref="T:System.Drawing.SizeF" /> structure to the width and height of another <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2069       <param name="sz1">The first <see cref="T:System.Drawing.SizeF" /> structure to add.</param>
2070       <param name="sz2">The second <see cref="T:System.Drawing.SizeF" /> structure to add.</param>
2071       <returns>A <see cref="T:System.Drawing.SizeF" /> structure that is the result of the addition operation.</returns>
2072     </member>
2073     <member name="M:System.Drawing.SizeF.Equals(System.Drawing.SizeF)">
2074       <summary>Indicates whether the current object is equal to another object of the same type.</summary>
2075       <param name="other">An object to compare with this object.</param>
2076       <returns>
2077         <see langword="true" /> if the current object is equal to <paramref name="other" />; otherwise, <see langword="false" />.</returns>
2078     </member>
2079     <member name="M:System.Drawing.SizeF.Equals(System.Object)">
2080       <summary>Tests to see whether the specified object is a <see cref="T:System.Drawing.SizeF" /> structure with the same dimensions as this <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2081       <param name="obj">The <see cref="T:System.Object" /> to test.</param>
2082       <returns>
2083         <see langword="true" /> if <paramref name="obj" /> is a <see cref="T:System.Drawing.SizeF" /> and has the same width and height as this <see cref="T:System.Drawing.SizeF" />; otherwise, <see langword="false" />.</returns>
2084     </member>
2085     <member name="M:System.Drawing.SizeF.GetHashCode">
2086       <summary>Returns a hash code for this <see cref="T:System.Drawing.Size" /> structure.</summary>
2087       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.Size" /> structure.</returns>
2088     </member>
2089     <member name="M:System.Drawing.SizeF.op_Addition(System.Drawing.SizeF,System.Drawing.SizeF)">
2090       <summary>Adds the width and height of one <see cref="T:System.Drawing.SizeF" /> structure to the width and height of another <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2091       <param name="sz1">The first <see cref="T:System.Drawing.SizeF" /> structure to add.</param>
2092       <param name="sz2">The second <see cref="T:System.Drawing.SizeF" /> structure to add.</param>
2093       <returns>A <see cref="T:System.Drawing.Size" /> structure that is the result of the addition operation.</returns>
2094     </member>
2095     <member name="M:System.Drawing.SizeF.op_Division(System.Drawing.SizeF,System.Single)">
2096       <summary>Divides the specified <see cref="T:System.Drawing.SizeF" /> by the specified single-precision floating-point number.</summary>
2097       <param name="left">The dividend.</param>
2098       <param name="right">The divisor.</param>
2099       <returns>The result of dividing <paramref name="left" />'s width and height by <paramref name="right" />.</returns>
2100     </member>
2101     <member name="M:System.Drawing.SizeF.op_Equality(System.Drawing.SizeF,System.Drawing.SizeF)">
2102       <summary>Tests whether two <see cref="T:System.Drawing.SizeF" /> structures are equal.</summary>
2103       <param name="sz1">The <see cref="T:System.Drawing.SizeF" /> structure on the left side of the equality operator.</param>
2104       <param name="sz2">The <see cref="T:System.Drawing.SizeF" /> structure on the right of the equality operator.</param>
2105       <returns>
2106         <see langword="true" /> if <paramref name="sz1" /> and <paramref name="sz2" /> have equal width and height; otherwise, <see langword="false" />.</returns>
2107     </member>
2108     <member name="M:System.Drawing.SizeF.op_Explicit(System.Drawing.SizeF)~System.Drawing.PointF">
2109       <summary>Converts the specified <see cref="T:System.Drawing.SizeF" /> structure to a <see cref="T:System.Drawing.PointF" /> structure.</summary>
2110       <param name="size">The <see cref="T:System.Drawing.SizeF" /> structure to be converted.</param>
2111       <returns>The <see cref="T:System.Drawing.PointF" /> structure to which this operator converts.</returns>
2112     </member>
2113     <member name="M:System.Drawing.SizeF.op_Explicit(System.Drawing.SizeF)~System.Numerics.Vector2">
2114       <summary>Converts the specified <see cref="T:System.Drawing.SizeF" /> to a <see cref="T:System.Numerics.Vector2" />.</summary>
2115       <param name="size">The pair of numbers to convert.</param>
2116       <returns>The size, converted into a <see cref="T:System.Numerics.Vector2" /> instance.</returns>
2117     </member>
2118     <member name="M:System.Drawing.SizeF.op_Explicit(System.Numerics.Vector2)~System.Drawing.SizeF">
2119       <summary>Converts the specified <see cref="T:System.Numerics.Vector2" /> to a <see cref="T:System.Drawing.SizeF" />.</summary>
2120       <param name="vector">The vector to convert.</param>
2121       <returns>The vector, converted into a <see cref="T:System.Drawing.SizeF" /> instance.</returns>
2122     </member>
2123     <member name="M:System.Drawing.SizeF.op_Inequality(System.Drawing.SizeF,System.Drawing.SizeF)">
2124       <summary>Tests whether two <see cref="T:System.Drawing.SizeF" /> structures are different.</summary>
2125       <param name="sz1">The <see cref="T:System.Drawing.SizeF" /> structure on the left of the inequality operator.</param>
2126       <param name="sz2">The <see cref="T:System.Drawing.SizeF" /> structure on the right of the inequality operator.</param>
2127       <returns>
2128         <see langword="true" /> if <paramref name="sz1" /> and <paramref name="sz2" /> differ either in width or height; <see langword="false" /> if <paramref name="sz1" /> and <paramref name="sz2" /> are equal.</returns>
2129     </member>
2130     <member name="M:System.Drawing.SizeF.op_Multiply(System.Drawing.SizeF,System.Single)">
2131       <summary>Multiplies the specified <see cref="T:System.Drawing.SizeF" /> by the specified single-precision floating-point number.</summary>
2132       <param name="left">The multiplicand.</param>
2133       <param name="right">The multiplier.</param>
2134       <returns>The result of multiplying <paramref name="left" />'s width and height by <paramref name="right" />.</returns>
2135     </member>
2136     <member name="M:System.Drawing.SizeF.op_Multiply(System.Single,System.Drawing.SizeF)">
2137       <summary>Multiplies the specified single-precision floating-point number by the specified <see cref="T:System.Drawing.SizeF" />.</summary>
2138       <param name="left">The multiplier.</param>
2139       <param name="right">The multiplicand.</param>
2140       <returns>The result of multiplying <paramref name="right" />'s width and height by <paramref name="left" />.</returns>
2141     </member>
2142     <member name="M:System.Drawing.SizeF.op_Subtraction(System.Drawing.SizeF,System.Drawing.SizeF)">
2143       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.SizeF" /> structure from the width and height of another <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2144       <param name="sz1">The <see cref="T:System.Drawing.SizeF" /> structure on the left side of the subtraction operator.</param>
2145       <param name="sz2">The <see cref="T:System.Drawing.SizeF" /> structure on the right side of the subtraction operator.</param>
2146       <returns>A <see cref="T:System.Drawing.SizeF" /> that is the result of the subtraction operation.</returns>
2147     </member>
2148     <member name="M:System.Drawing.SizeF.Subtract(System.Drawing.SizeF,System.Drawing.SizeF)">
2149       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.SizeF" /> structure from the width and height of another <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2150       <param name="sz1">The <see cref="T:System.Drawing.SizeF" /> structure on the left side of the subtraction operator.</param>
2151       <param name="sz2">The <see cref="T:System.Drawing.SizeF" /> structure on the right side of the subtraction operator.</param>
2152       <returns>A <see cref="T:System.Drawing.SizeF" /> structure that is a result of the subtraction operation.</returns>
2153     </member>
2154     <member name="M:System.Drawing.SizeF.ToPointF">
2155       <summary>Converts a <see cref="T:System.Drawing.SizeF" /> structure to a <see cref="T:System.Drawing.PointF" /> structure.</summary>
2156       <returns>A <see cref="T:System.Drawing.PointF" /> structure.</returns>
2157     </member>
2158     <member name="M:System.Drawing.SizeF.ToSize">
2159       <summary>Converts a <see cref="T:System.Drawing.SizeF" /> structure to a <see cref="T:System.Drawing.Size" /> structure.</summary>
2160       <returns>A <see cref="T:System.Drawing.Size" /> structure.</returns>
2161     </member>
2162     <member name="M:System.Drawing.SizeF.ToString">
2163       <summary>Creates a human-readable string that represents this <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2164       <returns>A string that represents this <see cref="T:System.Drawing.SizeF" /> structure.</returns>
2165     </member>
2166     <member name="M:System.Drawing.SizeF.ToVector2">
2167       <summary>Creates a new <see cref="T:System.Numerics.Vector2" /> from this <see cref="T:System.Drawing.SizeF" />.</summary>
2168       <returns>The vector that was created from this <see cref="T:System.Drawing.SizeF" />.</returns>
2169     </member>
2170     <member name="P:System.Drawing.SizeF.Height">
2171       <summary>Gets or sets the vertical component of this <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2172       <returns>The vertical component of this <see cref="T:System.Drawing.SizeF" /> structure, typically measured in pixels.</returns>
2173     </member>
2174     <member name="P:System.Drawing.SizeF.IsEmpty">
2175       <summary>Gets a value that indicates whether this <see cref="T:System.Drawing.SizeF" /> structure has zero width and height.</summary>
2176       <returns>
2177         <see langword="true" /> when this <see cref="T:System.Drawing.SizeF" /> structure has both a width and height of zero; otherwise, <see langword="false" />.</returns>
2178     </member>
2179     <member name="P:System.Drawing.SizeF.Width">
2180       <summary>Gets or sets the horizontal component of this <see cref="T:System.Drawing.SizeF" /> structure.</summary>
2181       <returns>The horizontal component of this <see cref="T:System.Drawing.SizeF" /> structure, typically measured in pixels.</returns>
2182     </member>
2183     <member name="T:System.Drawing.SystemColors">
2184       <summary>Each property of the <see cref="T:System.Drawing.SystemColors" /> class is a <see cref="T:System.Drawing.Color" /> structure that is the color of a Windows display element.</summary>
2185     </member>
2186     <member name="P:System.Drawing.SystemColors.ActiveBorder">
2187       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the active window's border.</summary>
2188       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the active window's border.</returns>
2189     </member>
2190     <member name="P:System.Drawing.SystemColors.ActiveCaption">
2191       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background of the active window's title bar.</summary>
2192       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the active window's title bar.</returns>
2193     </member>
2194     <member name="P:System.Drawing.SystemColors.ActiveCaptionText">
2195       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the text in the active window's title bar.</summary>
2196       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the text in the active window's title bar.</returns>
2197     </member>
2198     <member name="P:System.Drawing.SystemColors.AppWorkspace">
2199       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the application workspace.</summary>
2200       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the application workspace.</returns>
2201     </member>
2202     <member name="P:System.Drawing.SystemColors.ButtonFace">
2203       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the face color of a 3-D element.</summary>
2204       <returns>A <see cref="T:System.Drawing.Color" /> that is the face color of a 3-D element.</returns>
2205     </member>
2206     <member name="P:System.Drawing.SystemColors.ButtonHighlight">
2207       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the highlight color of a 3-D element.</summary>
2208       <returns>A <see cref="T:System.Drawing.Color" /> that is the highlight color of a 3-D element.</returns>
2209     </member>
2210     <member name="P:System.Drawing.SystemColors.ButtonShadow">
2211       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the shadow color of a 3-D element.</summary>
2212       <returns>A <see cref="T:System.Drawing.Color" /> that is the shadow color of a 3-D element.</returns>
2213     </member>
2214     <member name="P:System.Drawing.SystemColors.Control">
2215       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the face color of a 3-D element.</summary>
2216       <returns>A <see cref="T:System.Drawing.Color" /> that is the face color of a 3-D element.</returns>
2217     </member>
2218     <member name="P:System.Drawing.SystemColors.ControlDark">
2219       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the shadow color of a 3-D element.</summary>
2220       <returns>A <see cref="T:System.Drawing.Color" /> that is the shadow color of a 3-D element.</returns>
2221     </member>
2222     <member name="P:System.Drawing.SystemColors.ControlDarkDark">
2223       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the dark shadow color of a 3-D element.</summary>
2224       <returns>A <see cref="T:System.Drawing.Color" /> that is the dark shadow color of a 3-D element.</returns>
2225     </member>
2226     <member name="P:System.Drawing.SystemColors.ControlLight">
2227       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the light color of a 3-D element.</summary>
2228       <returns>A <see cref="T:System.Drawing.Color" /> that is the light color of a 3-D element.</returns>
2229     </member>
2230     <member name="P:System.Drawing.SystemColors.ControlLightLight">
2231       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the highlight color of a 3-D element.</summary>
2232       <returns>A <see cref="T:System.Drawing.Color" /> that is the highlight color of a 3-D element.</returns>
2233     </member>
2234     <member name="P:System.Drawing.SystemColors.ControlText">
2235       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of text in a 3-D element.</summary>
2236       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of text in a 3-D element.</returns>
2237     </member>
2238     <member name="P:System.Drawing.SystemColors.Desktop">
2239       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the desktop.</summary>
2240       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the desktop.</returns>
2241     </member>
2242     <member name="P:System.Drawing.SystemColors.GradientActiveCaption">
2243       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the lightest color in the color gradient of an active window's title bar.</summary>
2244       <returns>A <see cref="T:System.Drawing.Color" /> that is the lightest color in the color gradient of an active window's title bar.</returns>
2245     </member>
2246     <member name="P:System.Drawing.SystemColors.GradientInactiveCaption">
2247       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the lightest color in the color gradient of an inactive window's title bar.</summary>
2248       <returns>A <see cref="T:System.Drawing.Color" /> that is the lightest color in the color gradient of an inactive window's title bar.</returns>
2249     </member>
2250     <member name="P:System.Drawing.SystemColors.GrayText">
2251       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of dimmed text.</summary>
2252       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of dimmed text.</returns>
2253     </member>
2254     <member name="P:System.Drawing.SystemColors.Highlight">
2255       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background of selected items.</summary>
2256       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the background of selected items.</returns>
2257     </member>
2258     <member name="P:System.Drawing.SystemColors.HighlightText">
2259       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the text of selected items.</summary>
2260       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the text of selected items.</returns>
2261     </member>
2262     <member name="P:System.Drawing.SystemColors.HotTrack">
2263       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color used to designate a hot-tracked item.</summary>
2264       <returns>A <see cref="T:System.Drawing.Color" /> that is the color used to designate a hot-tracked item.</returns>
2265     </member>
2266     <member name="P:System.Drawing.SystemColors.InactiveBorder">
2267       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of an inactive window's border.</summary>
2268       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of an inactive window's border.</returns>
2269     </member>
2270     <member name="P:System.Drawing.SystemColors.InactiveCaption">
2271       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background of an inactive window's title bar.</summary>
2272       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the background of an inactive window's title bar.</returns>
2273     </member>
2274     <member name="P:System.Drawing.SystemColors.InactiveCaptionText">
2275       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the text in an inactive window's title bar.</summary>
2276       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the text in an inactive window's title bar.</returns>
2277     </member>
2278     <member name="P:System.Drawing.SystemColors.Info">
2279       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background of a ToolTip.</summary>
2280       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the background of a ToolTip.</returns>
2281     </member>
2282     <member name="P:System.Drawing.SystemColors.InfoText">
2283       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the text of a ToolTip.</summary>
2284       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the text of a ToolTip.</returns>
2285     </member>
2286     <member name="P:System.Drawing.SystemColors.Menu">
2287       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of a menu's background.</summary>
2288       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of a menu's background.</returns>
2289     </member>
2290     <member name="P:System.Drawing.SystemColors.MenuBar">
2291       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background of a menu bar.</summary>
2292       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the background of a menu bar.</returns>
2293     </member>
2294     <member name="P:System.Drawing.SystemColors.MenuHighlight">
2295       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color used to highlight menu items when the menu appears as a flat menu.</summary>
2296       <returns>A <see cref="T:System.Drawing.Color" /> that is the color used to highlight menu items when the menu appears as a flat menu.</returns>
2297     </member>
2298     <member name="P:System.Drawing.SystemColors.MenuText">
2299       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of a menu's text.</summary>
2300       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of a menu's text.</returns>
2301     </member>
2302     <member name="P:System.Drawing.SystemColors.ScrollBar">
2303       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background of a scroll bar.</summary>
2304       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the background of a scroll bar.</returns>
2305     </member>
2306     <member name="P:System.Drawing.SystemColors.Window">
2307       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the background in the client area of a window.</summary>
2308       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the background in the client area of a window.</returns>
2309     </member>
2310     <member name="P:System.Drawing.SystemColors.WindowFrame">
2311       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of a window frame.</summary>
2312       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of a window frame.</returns>
2313     </member>
2314     <member name="P:System.Drawing.SystemColors.WindowText">
2315       <summary>Gets a <see cref="T:System.Drawing.Color" /> structure that is the color of the text in the client area of a window.</summary>
2316       <returns>A <see cref="T:System.Drawing.Color" /> that is the color of the text in the client area of a window.</returns>
2317     </member>
2318   </members>
2319 </doc>