Release 4.0.0-preview1-00304
[platform/core/csapi/tizenfx.git] / pkg / build / tizen40 / ref / System.Drawing.Primitives.xml
1 <?xml version="1.0" encoding="utf-8"?><span>
2 <doc>
3   <assembly>
4     <name>System.Drawing.Primitives</name>
5   </assembly>
6   <members>
7     <member name="T:System.Drawing.Rectangle">
8       <summary>Stores a set of four integers that represent the location and size of a rectangle</summary>
9     </member>
10     <member name="M:System.Drawing.Rectangle.#ctor(System.Drawing.Point,System.Drawing.Size)">
11       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Rectangle"></see> class with the specified location and size.</summary>
12       <param name="location">A <see cref="T:System.Drawing.Point"></see> that represents the upper-left corner of the rectangular region.</param>
13       <param name="size">A <see cref="T:System.Drawing.Size"></see> that represents the width and height of the rectangular region.</param>
14     </member>
15     <member name="M:System.Drawing.Rectangle.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
16       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Rectangle"></see> class with the specified location and size.</summary>
17       <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
18       <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
19       <param name="width">The width of the rectangle.</param>
20       <param name="height">The height of the rectangle.</param>
21     </member>
22     <member name="P:System.Drawing.Rectangle.Bottom">
23       <summary>Gets the y-coordinate that is the sum of the <see cref="P:System.Drawing.Rectangle.Y"></see> and <see cref="P:System.Drawing.Rectangle.Height"></see> property values of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
24       <returns>The y-coordinate that is the sum of <see cref="P:System.Drawing.Rectangle.Y"></see> and <see cref="P:System.Drawing.Rectangle.Height"></see> of this <see cref="T:System.Drawing.Rectangle"></see>.</returns>
25     </member>
26     <member name="M:System.Drawing.Rectangle.Ceiling(System.Drawing.RectangleF)">
27       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF"></see> structure to a <see cref="T:System.Drawing.Rectangle"></see> structure by rounding the <see cref="T:System.Drawing.RectangleF"></see> values to the next higher integer values.</summary>
28       <param name="value">The <see cref="T:System.Drawing.RectangleF"></see> structure to be converted.</param>
29       <returns>Returns a <see cref="T:System.Drawing.Rectangle"></see>.</returns>
30     </member>
31     <member name="M:System.Drawing.Rectangle.Contains(System.Drawing.Point)">
32       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
33       <param name="pt">The <see cref="T:System.Drawing.Point"></see> to test.</param>
34       <returns>This method returns true if the point represented by <paramref name="pt">pt</paramref> is contained within this <see cref="T:System.Drawing.Rectangle"></see> structure; otherwise false.</returns>
35     </member>
36     <member name="M:System.Drawing.Rectangle.Contains(System.Drawing.Rectangle)">
37       <summary>Determines if the rectangular region represented by <paramref name="rect">rect</paramref> is entirely contained within this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
38       <param name="rect">The <see cref="T:System.Drawing.Rectangle"></see> to test.</param>
39       <returns>This method returns true if the rectangular region represented by <paramref name="rect">rect</paramref> is entirely contained within this <see cref="T:System.Drawing.Rectangle"></see> structure; otherwise false.</returns>
40     </member>
41     <member name="M:System.Drawing.Rectangle.Contains(System.Int32,System.Int32)">
42       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
43       <param name="x">The x-coordinate of the point to test.</param>
44       <param name="y">The y-coordinate of the point to test.</param>
45       <returns>This method returns true if the point defined by <paramref name="x">x</paramref> and <paramref name="y">y</paramref> is contained within this <see cref="T:System.Drawing.Rectangle"></see> structure; otherwise false.</returns>
46     </member>
47     <member name="F:System.Drawing.Rectangle.Empty">
48       <summary>Represents a <see cref="T:System.Drawing.Rectangle"></see> structure with its properties left uninitialized.</summary>
49       <returns></returns>
50     </member>
51     <member name="M:System.Drawing.Rectangle.Equals(System.Drawing.Rectangle)">
52       <param name="other"></param>
53       <returns></returns>
54     </member>
55     <member name="M:System.Drawing.Rectangle.Equals(System.Object)">
56       <summary>Tests whether <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.Rectangle"></see> structure with the same location and size of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
57       <param name="obj">The <see cref="T:System.Object"></see> to test.</param>
58       <returns>This method returns true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.Rectangle"></see> structure and its <see cref="P:System.Drawing.Rectangle.X"></see>, <see cref="P:System.Drawing.Rectangle.Y"></see>, <see cref="P:System.Drawing.Rectangle.Width"></see>, and <see cref="P:System.Drawing.Rectangle.Height"></see> properties are equal to the corresponding properties of this <see cref="T:System.Drawing.Rectangle"></see> structure; otherwise, false.</returns>
59     </member>
60     <member name="M:System.Drawing.Rectangle.FromLTRB(System.Int32,System.Int32,System.Int32,System.Int32)">
61       <summary>Creates a <see cref="T:System.Drawing.Rectangle"></see> structure with the specified edge locations.</summary>
62       <param name="left">The x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</param>
63       <param name="top">The y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</param>
64       <param name="right">The x-coordinate of the lower-right corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</param>
65       <param name="bottom">The y-coordinate of the lower-right corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</param>
66       <returns>The new <see cref="T:System.Drawing.Rectangle"></see> that this method creates.</returns>
67     </member>
68     <member name="M:System.Drawing.Rectangle.GetHashCode">
69       <summary>Returns the hash code for this <see cref="T:System.Drawing.Rectangle"></see> structure. For information about the use of hash codes, see <see cref="M:System.Object.GetHashCode"></see> .</summary>
70       <returns>An integer that represents the hash code for this rectangle.</returns>
71     </member>
72     <member name="P:System.Drawing.Rectangle.Height">
73       <summary>Gets or sets the height of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
74       <returns>The height of this <see cref="T:System.Drawing.Rectangle"></see> structure. The default is 0.</returns>
75     </member>
76     <member name="M:System.Drawing.Rectangle.Inflate(System.Drawing.Size)">
77       <summary>Enlarges this <see cref="T:System.Drawing.Rectangle"></see> by the specified amount.</summary>
78       <param name="size">The amount to inflate this rectangle.</param>
79     </member>
80     <member name="M:System.Drawing.Rectangle.Inflate(System.Int32,System.Int32)">
81       <summary>Enlarges this <see cref="T:System.Drawing.Rectangle"></see> by the specified amount.</summary>
82       <param name="width">The amount to inflate this <see cref="T:System.Drawing.Rectangle"></see> horizontally.</param>
83       <param name="height">The amount to inflate this <see cref="T:System.Drawing.Rectangle"></see> vertically.</param>
84     </member>
85     <member name="M:System.Drawing.Rectangle.Inflate(System.Drawing.Rectangle,System.Int32,System.Int32)">
86       <summary>Creates and returns an enlarged copy of the specified <see cref="T:System.Drawing.Rectangle"></see> structure. The copy is enlarged by the specified amount. The original <see cref="T:System.Drawing.Rectangle"></see> structure remains unmodified.</summary>
87       <param name="rect">The <see cref="T:System.Drawing.Rectangle"></see> with which to start. This rectangle is not modified.</param>
88       <param name="x">The amount to inflate this <see cref="T:System.Drawing.Rectangle"></see> horizontally.</param>
89       <param name="y">The amount to inflate this <see cref="T:System.Drawing.Rectangle"></see> vertically.</param>
90       <returns>The enlarged <see cref="T:System.Drawing.Rectangle"></see>.</returns>
91     </member>
92     <member name="M:System.Drawing.Rectangle.Intersect(System.Drawing.Rectangle,System.Drawing.Rectangle)">
93       <summary>Returns a third <see cref="T:System.Drawing.Rectangle"></see> structure that represents the intersection of two other <see cref="T:System.Drawing.Rectangle"></see> structures. If there is no intersection, an empty <see cref="T:System.Drawing.Rectangle"></see> is returned.</summary>
94       <param name="a">A rectangle to intersect.</param>
95       <param name="b">A rectangle to intersect.</param>
96       <returns>A <see cref="T:System.Drawing.Rectangle"></see> that represents the intersection of <paramref name="a">a</paramref> and <paramref name="b">b</paramref>.</returns>
97     </member>
98     <member name="M:System.Drawing.Rectangle.Intersect(System.Drawing.Rectangle)">
99       <summary>Replaces this <see cref="T:System.Drawing.Rectangle"></see> with the intersection of itself and the specified <see cref="T:System.Drawing.Rectangle"></see>.</summary>
100       <param name="rect">The <see cref="T:System.Drawing.Rectangle"></see> with which to intersect.</param>
101     </member>
102     <member name="M:System.Drawing.Rectangle.IntersectsWith(System.Drawing.Rectangle)">
103       <summary>Determines if this rectangle intersects with <paramref name="rect">rect</paramref>.</summary>
104       <param name="rect">The rectangle to test.</param>
105       <returns>This method returns true if there is any intersection, otherwise false.</returns>
106     </member>
107     <member name="P:System.Drawing.Rectangle.IsEmpty">
108       <summary>Tests whether all numeric properties of this <see cref="T:System.Drawing.Rectangle"></see> have values of zero.</summary>
109       <returns>This property returns true if the <see cref="P:System.Drawing.Rectangle.Width"></see>, <see cref="P:System.Drawing.Rectangle.Height"></see>, <see cref="P:System.Drawing.Rectangle.X"></see>, and <see cref="P:System.Drawing.Rectangle.Y"></see> properties of this <see cref="T:System.Drawing.Rectangle"></see> all have values of zero; otherwise, false.</returns>
110     </member>
111     <member name="P:System.Drawing.Rectangle.Left">
112       <summary>Gets the x-coordinate of the left edge of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
113       <returns>The x-coordinate of the left edge of this <see cref="T:System.Drawing.Rectangle"></see> structure.</returns>
114     </member>
115     <member name="P:System.Drawing.Rectangle.Location">
116       <summary>Gets or sets the coordinates of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
117       <returns>A <see cref="T:System.Drawing.Point"></see> that represents the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</returns>
118     </member>
119     <member name="M:System.Drawing.Rectangle.Offset(System.Drawing.Point)">
120       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
121       <param name="pos">Amount to offset the location.</param>
122     </member>
123     <member name="M:System.Drawing.Rectangle.Offset(System.Int32,System.Int32)">
124       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
125       <param name="x">The horizontal offset.</param>
126       <param name="y">The vertical offset.</param>
127     </member>
128     <member name="M:System.Drawing.Rectangle.op_Equality(System.Drawing.Rectangle,System.Drawing.Rectangle)">
129       <summary>Tests whether two <see cref="T:System.Drawing.Rectangle"></see> structures have equal location and size.</summary>
130       <param name="left">The <see cref="T:System.Drawing.Rectangle"></see> structure that is to the left of the equality operator.</param>
131       <param name="right">The <see cref="T:System.Drawing.Rectangle"></see> structure that is to the right of the equality operator.</param>
132       <returns>This operator returns true if the two <see cref="T:System.Drawing.Rectangle"></see> structures have equal <see cref="P:System.Drawing.Rectangle.X"></see>, <see cref="P:System.Drawing.Rectangle.Y"></see>, <see cref="P:System.Drawing.Rectangle.Width"></see>, and <see cref="P:System.Drawing.Rectangle.Height"></see> properties.</returns>
133     </member>
134     <member name="M:System.Drawing.Rectangle.op_Inequality(System.Drawing.Rectangle,System.Drawing.Rectangle)">
135       <summary>Tests whether two <see cref="T:System.Drawing.Rectangle"></see> structures differ in location or size.</summary>
136       <param name="left">The <see cref="T:System.Drawing.Rectangle"></see> structure that is to the left of the inequality operator.</param>
137       <param name="right">The <see cref="T:System.Drawing.Rectangle"></see> structure that is to the right of the inequality operator.</param>
138       <returns>This operator returns true if any of the <see cref="P:System.Drawing.Rectangle.X"></see>, <see cref="P:System.Drawing.Rectangle.Y"></see>, <see cref="P:System.Drawing.Rectangle.Width"></see> or <see cref="P:System.Drawing.Rectangle.Height"></see> properties of the two <see cref="T:System.Drawing.Rectangle"></see> structures are unequal; otherwise false.</returns>
139     </member>
140     <member name="P:System.Drawing.Rectangle.Right">
141       <summary>Gets the x-coordinate that is the sum of <see cref="P:System.Drawing.Rectangle.X"></see> and <see cref="P:System.Drawing.Rectangle.Width"></see> property values of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
142       <returns>The x-coordinate that is the sum of <see cref="P:System.Drawing.Rectangle.X"></see> and <see cref="P:System.Drawing.Rectangle.Width"></see> of this <see cref="T:System.Drawing.Rectangle"></see>.</returns>
143     </member>
144     <member name="M:System.Drawing.Rectangle.Round(System.Drawing.RectangleF)">
145       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF"></see> to a <see cref="T:System.Drawing.Rectangle"></see> by rounding the <see cref="T:System.Drawing.RectangleF"></see> values to the nearest integer values.</summary>
146       <param name="value">The <see cref="T:System.Drawing.RectangleF"></see> to be converted.</param>
147       <returns>The rounded interger value of the <see cref="T:System.Drawing.Rectangle"></see>.</returns>
148     </member>
149     <member name="P:System.Drawing.Rectangle.Size">
150       <summary>Gets or sets the size of this <see cref="T:System.Drawing.Rectangle"></see>.</summary>
151       <returns>A <see cref="T:System.Drawing.Size"></see> that represents the width and height of this <see cref="T:System.Drawing.Rectangle"></see> structure.</returns>
152     </member>
153     <member name="P:System.Drawing.Rectangle.Top">
154       <summary>Gets the y-coordinate of the top edge of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
155       <returns>The y-coordinate of the top edge of this <see cref="T:System.Drawing.Rectangle"></see> structure.</returns>
156     </member>
157     <member name="M:System.Drawing.Rectangle.ToString">
158       <summary>Converts the attributes of this <see cref="T:System.Drawing.Rectangle"></see> to a human-readable string.</summary>
159       <returns>A string that contains the position, width, and height of this <see cref="T:System.Drawing.Rectangle"></see> structure ¾ for example, {X=20, Y=20, Width=100, Height=50}</returns>
160     </member>
161     <member name="M:System.Drawing.Rectangle.Truncate(System.Drawing.RectangleF)">
162       <summary>Converts the specified <see cref="T:System.Drawing.RectangleF"></see> to a <see cref="T:System.Drawing.Rectangle"></see> by truncating the <see cref="T:System.Drawing.RectangleF"></see> values.</summary>
163       <param name="value">The <see cref="T:System.Drawing.RectangleF"></see> to be converted.</param>
164       <returns>The truncated value of the  <see cref="T:System.Drawing.Rectangle"></see>.</returns>
165     </member>
166     <member name="M:System.Drawing.Rectangle.Union(System.Drawing.Rectangle,System.Drawing.Rectangle)">
167       <summary>Gets a <see cref="T:System.Drawing.Rectangle"></see> structure that contains the union of two <see cref="T:System.Drawing.Rectangle"></see> structures.</summary>
168       <param name="a">A rectangle to union.</param>
169       <param name="b">A rectangle to union.</param>
170       <returns>A <see cref="T:System.Drawing.Rectangle"></see> structure that bounds the union of the two <see cref="T:System.Drawing.Rectangle"></see> structures.</returns>
171     </member>
172     <member name="P:System.Drawing.Rectangle.Width">
173       <summary>Gets or sets the width of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
174       <returns>The width of this <see cref="T:System.Drawing.Rectangle"></see> structure. The default is 0.</returns>
175     </member>
176     <member name="P:System.Drawing.Rectangle.X">
177       <summary>Gets or sets the x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
178       <returns>The x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure. The default is 0.</returns>
179     </member>
180     <member name="P:System.Drawing.Rectangle.Y">
181       <summary>Gets or sets the y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure.</summary>
182       <returns>The y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.Rectangle"></see> structure. The default is 0.</returns>
183     </member>
184     <member name="T:System.Drawing.RectangleF">
185       <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"></see> object.</summary>
186     </member>
187     <member name="M:System.Drawing.RectangleF.#ctor(System.Drawing.PointF,System.Drawing.SizeF)">
188       <summary>Initializes a new instance of the <see cref="T:System.Drawing.RectangleF"></see> class with the specified location and size.</summary>
189       <param name="location">A <see cref="T:System.Drawing.PointF"></see> that represents the upper-left corner of the rectangular region.</param>
190       <param name="size">A <see cref="T:System.Drawing.SizeF"></see> that represents the width and height of the rectangular region.</param>
191     </member>
192     <member name="M:System.Drawing.RectangleF.#ctor(System.Single,System.Single,System.Single,System.Single)">
193       <summary>Initializes a new instance of the <see cref="T:System.Drawing.RectangleF"></see> class with the specified location and size.</summary>
194       <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
195       <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
196       <param name="width">The width of the rectangle.</param>
197       <param name="height">The height of the rectangle.</param>
198     </member>
199     <member name="P:System.Drawing.RectangleF.Bottom">
200       <summary>Gets the y-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.Y"></see> and <see cref="P:System.Drawing.RectangleF.Height"></see> of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
201       <returns>The y-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.Y"></see> and <see cref="P:System.Drawing.RectangleF.Height"></see> of this <see cref="T:System.Drawing.RectangleF"></see> structure.</returns>
202     </member>
203     <member name="M:System.Drawing.RectangleF.Contains(System.Drawing.PointF)">
204       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
205       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to test.</param>
206       <returns>This method returns true if the point represented by the <paramref name="pt">pt</paramref> parameter is contained within this <see cref="T:System.Drawing.RectangleF"></see> structure; otherwise false.</returns>
207     </member>
208     <member name="M:System.Drawing.RectangleF.Contains(System.Drawing.RectangleF)">
209       <summary>Determines if the rectangular region represented by <paramref name="rect">rect</paramref> is entirely contained within this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
210       <param name="rect">The <see cref="T:System.Drawing.RectangleF"></see> to test.</param>
211       <returns>This method returns true if the rectangular region represented by <paramref name="rect">rect</paramref> is entirely contained within the rectangular region represented by this <see cref="T:System.Drawing.RectangleF"></see>; otherwise false.</returns>
212     </member>
213     <member name="M:System.Drawing.RectangleF.Contains(System.Single,System.Single)">
214       <summary>Determines if the specified point is contained within this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
215       <param name="x">The x-coordinate of the point to test.</param>
216       <param name="y">The y-coordinate of the point to test.</param>
217       <returns>This method returns true if the point defined by <paramref name="x">x</paramref> and <paramref name="y">y</paramref> is contained within this <see cref="T:System.Drawing.RectangleF"></see> structure; otherwise false.</returns>
218     </member>
219     <member name="F:System.Drawing.RectangleF.Empty">
220       <summary>Represents an instance of the <see cref="T:System.Drawing.RectangleF"></see> class with its members uninitialized.</summary>
221       <returns></returns>
222     </member>
223     <member name="M:System.Drawing.RectangleF.Equals(System.Drawing.RectangleF)">
224       <param name="other"></param>
225       <returns></returns>
226     </member>
227     <member name="M:System.Drawing.RectangleF.Equals(System.Object)">
228       <summary>Tests whether <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.RectangleF"></see> with the same location and size of this <see cref="T:System.Drawing.RectangleF"></see>.</summary>
229       <param name="obj">The <see cref="T:System.Object"></see> to test.</param>
230       <returns>This method returns true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.RectangleF"></see> and its X, Y, Width, and Height properties are equal to the corresponding properties of this <see cref="T:System.Drawing.RectangleF"></see>; otherwise, false.</returns>
231     </member>
232     <member name="M:System.Drawing.RectangleF.FromLTRB(System.Single,System.Single,System.Single,System.Single)">
233       <summary>Creates a <see cref="T:System.Drawing.RectangleF"></see> structure with upper-left corner and lower-right corner at the specified locations.</summary>
234       <param name="left">The x-coordinate of the upper-left corner of the rectangular region.</param>
235       <param name="top">The y-coordinate of the upper-left corner of the rectangular region.</param>
236       <param name="right">The x-coordinate of the lower-right corner of the rectangular region.</param>
237       <param name="bottom">The y-coordinate of the lower-right corner of the rectangular region.</param>
238       <returns>The new <see cref="T:System.Drawing.RectangleF"></see> that this method creates.</returns>
239     </member>
240     <member name="M:System.Drawing.RectangleF.GetHashCode">
241       <summary>Gets the hash code for this <see cref="T:System.Drawing.RectangleF"></see> structure. For information about the use of hash codes, see Object.GetHashCode.</summary>
242       <returns>The hash code for this <see cref="T:System.Drawing.RectangleF"></see>.</returns>
243     </member>
244     <member name="P:System.Drawing.RectangleF.Height">
245       <summary>Gets or sets the height of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
246       <returns>The height of this <see cref="T:System.Drawing.RectangleF"></see> structure. The default is 0.</returns>
247     </member>
248     <member name="M:System.Drawing.RectangleF.Inflate(System.Drawing.SizeF)">
249       <summary>Enlarges this <see cref="T:System.Drawing.RectangleF"></see> by the specified amount.</summary>
250       <param name="size">The amount to inflate this rectangle.</param>
251     </member>
252     <member name="M:System.Drawing.RectangleF.Inflate(System.Single,System.Single)">
253       <summary>Enlarges this <see cref="T:System.Drawing.RectangleF"></see> structure by the specified amount.</summary>
254       <param name="x">The amount to inflate this <see cref="T:System.Drawing.RectangleF"></see> structure horizontally.</param>
255       <param name="y">The amount to inflate this <see cref="T:System.Drawing.RectangleF"></see> structure vertically.</param>
256     </member>
257     <member name="M:System.Drawing.RectangleF.Inflate(System.Drawing.RectangleF,System.Single,System.Single)">
258       <summary>Creates and returns an enlarged copy of the specified <see cref="T:System.Drawing.RectangleF"></see> structure. The copy is enlarged by the specified amount and the original rectangle remains unmodified.</summary>
259       <param name="rect">The <see cref="T:System.Drawing.RectangleF"></see> to be copied. This rectangle is not modified.</param>
260       <param name="x">The amount to enlarge the copy of the rectangle horizontally.</param>
261       <param name="y">The amount to enlarge the copy of the rectangle vertically.</param>
262       <returns>The enlarged <see cref="T:System.Drawing.RectangleF"></see>.</returns>
263     </member>
264     <member name="M:System.Drawing.RectangleF.Intersect(System.Drawing.RectangleF,System.Drawing.RectangleF)">
265       <summary>Returns a <see cref="T:System.Drawing.RectangleF"></see> structure that represents the intersection of two rectangles. If there is no intersection, and empty <see cref="T:System.Drawing.RectangleF"></see> is returned.</summary>
266       <param name="a">A rectangle to intersect.</param>
267       <param name="b">A rectangle to intersect.</param>
268       <returns>A third <see cref="T:System.Drawing.RectangleF"></see> structure the size of which represents the overlapped area of the two specified rectangles.</returns>
269     </member>
270     <member name="M:System.Drawing.RectangleF.Intersect(System.Drawing.RectangleF)">
271       <summary>Replaces this <see cref="T:System.Drawing.RectangleF"></see> structure with the intersection of itself and the specified <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
272       <param name="rect">The rectangle to intersect.</param>
273     </member>
274     <member name="M:System.Drawing.RectangleF.IntersectsWith(System.Drawing.RectangleF)">
275       <summary>Determines if this rectangle intersects with <paramref name="rect">rect</paramref>.</summary>
276       <param name="rect">The rectangle to test.</param>
277       <returns>This method returns true if there is any intersection.</returns>
278     </member>
279     <member name="P:System.Drawing.RectangleF.IsEmpty">
280       <summary>Tests whether the <see cref="P:System.Drawing.RectangleF.Width"></see> or <see cref="P:System.Drawing.RectangleF.Height"></see> property of this <see cref="T:System.Drawing.RectangleF"></see> has a value of zero.</summary>
281       <returns>This property returns true if the <see cref="P:System.Drawing.RectangleF.Width"></see> or <see cref="P:System.Drawing.RectangleF.Height"></see> property of this <see cref="T:System.Drawing.RectangleF"></see> has a value of zero; otherwise, false.</returns>
282     </member>
283     <member name="P:System.Drawing.RectangleF.Left">
284       <summary>Gets the x-coordinate of the left edge of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
285       <returns>The x-coordinate of the left edge of this <see cref="T:System.Drawing.RectangleF"></see> structure.</returns>
286     </member>
287     <member name="P:System.Drawing.RectangleF.Location">
288       <summary>Gets or sets the coordinates of the upper-left corner of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
289       <returns>A <see cref="T:System.Drawing.PointF"></see> that represents the upper-left corner of this <see cref="T:System.Drawing.RectangleF"></see> structure.</returns>
290     </member>
291     <member name="M:System.Drawing.RectangleF.Offset(System.Drawing.PointF)">
292       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
293       <param name="pos">The amount to offset the location.</param>
294     </member>
295     <member name="M:System.Drawing.RectangleF.Offset(System.Single,System.Single)">
296       <summary>Adjusts the location of this rectangle by the specified amount.</summary>
297       <param name="x">The amount to offset the location horizontally.</param>
298       <param name="y">The amount to offset the location vertically.</param>
299     </member>
300     <member name="M:System.Drawing.RectangleF.op_Equality(System.Drawing.RectangleF,System.Drawing.RectangleF)">
301       <summary>Tests whether two <see cref="T:System.Drawing.RectangleF"></see> structures have equal location and size.</summary>
302       <param name="left">The <see cref="T:System.Drawing.RectangleF"></see> structure that is to the left of the equality operator.</param>
303       <param name="right">The <see cref="T:System.Drawing.RectangleF"></see> structure that is to the right of the equality operator.</param>
304       <returns>This operator returns true if the two specified <see cref="T:System.Drawing.RectangleF"></see> structures have equal <see cref="P:System.Drawing.RectangleF.X"></see>, <see cref="P:System.Drawing.RectangleF.Y"></see>, <see cref="P:System.Drawing.RectangleF.Width"></see>, and <see cref="P:System.Drawing.RectangleF.Height"></see> properties.</returns>
305     </member>
306     <member name="M:System.Drawing.RectangleF.op_Implicit(System.Drawing.Rectangle to System.Drawing.RectangleF)">
307       <param name="r"></param>
308       <returns></returns>
309     </member>
310     <member name="M:System.Drawing.RectangleF.op_Inequality(System.Drawing.RectangleF,System.Drawing.RectangleF)">
311       <summary>Tests whether two <see cref="T:System.Drawing.RectangleF"></see> structures differ in location or size.</summary>
312       <param name="left">The <see cref="T:System.Drawing.RectangleF"></see> structure that is to the left of the inequality operator.</param>
313       <param name="right">The <see cref="T:System.Drawing.RectangleF"></see> structure that is to the right of the inequality operator.</param>
314       <returns>This operator returns true if any of the <see cref="P:System.Drawing.RectangleF.X"></see> , <see cref="P:System.Drawing.RectangleF.Y"></see>, <see cref="P:System.Drawing.RectangleF.Width"></see>, or <see cref="P:System.Drawing.RectangleF.Height"></see> properties of the two <see cref="T:System.Drawing.Rectangle"></see> structures are unequal; otherwise false.</returns>
315     </member>
316     <member name="P:System.Drawing.RectangleF.Right">
317       <summary>Gets the x-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.X"></see> and <see cref="P:System.Drawing.RectangleF.Width"></see> of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
318       <returns>The x-coordinate that is the sum of <see cref="P:System.Drawing.RectangleF.X"></see> and <see cref="P:System.Drawing.RectangleF.Width"></see> of this <see cref="T:System.Drawing.RectangleF"></see> structure.</returns>
319     </member>
320     <member name="P:System.Drawing.RectangleF.Size">
321       <summary>Gets or sets the size of this <see cref="T:System.Drawing.RectangleF"></see>.</summary>
322       <returns>A <see cref="T:System.Drawing.SizeF"></see> that represents the width and height of this <see cref="T:System.Drawing.RectangleF"></see> structure.</returns>
323     </member>
324     <member name="P:System.Drawing.RectangleF.Top">
325       <summary>Gets the y-coordinate of the top edge of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
326       <returns>The y-coordinate of the top edge of this <see cref="T:System.Drawing.RectangleF"></see> structure.</returns>
327     </member>
328     <member name="M:System.Drawing.RectangleF.ToString">
329       <summary>Converts the Location and <see cref="T:System.Drawing.Size"></see> of this <see cref="T:System.Drawing.RectangleF"></see> to a human-readable string.</summary>
330       <returns>A string that contains the position, width, and height of this <see cref="T:System.Drawing.RectangleF"></see> structure. For example, &quot;{X=20, Y=20, Width=100, Height=50}&quot;.</returns>
331     </member>
332     <member name="M:System.Drawing.RectangleF.Union(System.Drawing.RectangleF,System.Drawing.RectangleF)">
333       <summary>Creates the smallest possible third rectangle that can contain both of two rectangles that form a union.</summary>
334       <param name="a">A rectangle to union.</param>
335       <param name="b">A rectangle to union.</param>
336       <returns>A third <see cref="T:System.Drawing.RectangleF"></see> structure that contains both of the two rectangles that form the union.</returns>
337     </member>
338     <member name="P:System.Drawing.RectangleF.Width">
339       <summary>Gets or sets the width of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
340       <returns>The width of this <see cref="T:System.Drawing.RectangleF"></see> structure. The default is 0.</returns>
341     </member>
342     <member name="P:System.Drawing.RectangleF.X">
343       <summary>Gets or sets the x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
344       <returns>The x-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF"></see> structure. The default is 0.</returns>
345     </member>
346     <member name="P:System.Drawing.RectangleF.Y">
347       <summary>Gets or sets the y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF"></see> structure.</summary>
348       <returns>The y-coordinate of the upper-left corner of this <see cref="T:System.Drawing.RectangleF"></see> structure. The default is 0.</returns>
349     </member>
350     <member name="T:System.Drawing.Size">
351       <summary>Stores an ordered pair of integers, which specify a <see cref="P:System.Drawing.Size.Height"></see> and <see cref="P:System.Drawing.Size.Width"></see>.</summary>
352     </member>
353     <member name="M:System.Drawing.Size.#ctor(System.Drawing.Point)">
354       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Size"></see> structure from the specified <see cref="T:System.Drawing.Point"></see> structure.</summary>
355       <param name="pt">The <see cref="T:System.Drawing.Point"></see> structure from which to initialize this <see cref="T:System.Drawing.Size"></see> structure.</param>
356     </member>
357     <member name="M:System.Drawing.Size.#ctor(System.Int32,System.Int32)">
358       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Size"></see> structure from the specified dimensions.</summary>
359       <param name="width">The width component of the new <see cref="T:System.Drawing.Size"></see>.</param>
360       <param name="height">The height component of the new <see cref="T:System.Drawing.Size"></see>.</param>
361     </member>
362     <member name="M:System.Drawing.Size.Add(System.Drawing.Size,System.Drawing.Size)">
363       <summary>Adds the width and height of one <see cref="T:System.Drawing.Size"></see> structure to the width and height of another <see cref="T:System.Drawing.Size"></see> structure.</summary>
364       <param name="sz1">The first <see cref="T:System.Drawing.Size"></see> structure to add.</param>
365       <param name="sz2">The second <see cref="T:System.Drawing.Size"></see> structure to add.</param>
366       <returns>A <see cref="T:System.Drawing.Size"></see> structure that is the result of the addition operation.</returns>
367     </member>
368     <member name="M:System.Drawing.Size.Ceiling(System.Drawing.SizeF)">
369       <summary>Converts the specified <see cref="T:System.Drawing.SizeF"></see> structure to a <see cref="T:System.Drawing.Size"></see> structure by rounding the values of the <see cref="T:System.Drawing.Size"></see> structure to the next higher integer values.</summary>
370       <param name="value">The <see cref="T:System.Drawing.SizeF"></see> structure to convert.</param>
371       <returns>The <see cref="T:System.Drawing.Size"></see> structure this method converts to.</returns>
372     </member>
373     <member name="F:System.Drawing.Size.Empty">
374       <summary>Gets a <see cref="T:System.Drawing.Size"></see> structure that has a <see cref="P:System.Drawing.Size.Height"></see> and <see cref="P:System.Drawing.Size.Width"></see> value of 0.</summary>
375       <returns></returns>
376     </member>
377     <member name="M:System.Drawing.Size.Equals(System.Drawing.Size)">
378       <param name="other"></param>
379       <returns></returns>
380     </member>
381     <member name="M:System.Drawing.Size.Equals(System.Object)">
382       <summary>Tests to see whether the specified object is a <see cref="T:System.Drawing.Size"></see> structure with the same dimensions as this <see cref="T:System.Drawing.Size"></see> structure.</summary>
383       <param name="obj">The <see cref="T:System.Object"></see> to test.</param>
384       <returns>true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.Size"></see> and has the same width and height as this <see cref="T:System.Drawing.Size"></see>; otherwise, false.</returns>
385     </member>
386     <member name="M:System.Drawing.Size.GetHashCode">
387       <summary>Returns a hash code for this <see cref="T:System.Drawing.Size"></see> structure.</summary>
388       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.Size"></see> structure.</returns>
389     </member>
390     <member name="P:System.Drawing.Size.Height">
391       <summary>Gets or sets the vertical component of this <see cref="T:System.Drawing.Size"></see> structure.</summary>
392       <returns>The vertical component of this <see cref="T:System.Drawing.Size"></see> structure, typically measured in pixels.</returns>
393     </member>
394     <member name="P:System.Drawing.Size.IsEmpty">
395       <summary>Tests whether this <see cref="T:System.Drawing.Size"></see> structure has width and height of 0.</summary>
396       <returns>This property returns true when this <see cref="T:System.Drawing.Size"></see> structure has both a width and height of 0; otherwise, false.</returns>
397     </member>
398     <member name="M:System.Drawing.Size.op_Addition(System.Drawing.Size,System.Drawing.Size)">
399       <summary>Adds the width and height of one <see cref="T:System.Drawing.Size"></see> structure to the width and height of another <see cref="T:System.Drawing.Size"></see> structure.</summary>
400       <param name="sz1">The first <see cref="T:System.Drawing.Size"></see> to add.</param>
401       <param name="sz2">The second <see cref="T:System.Drawing.Size"></see> to add.</param>
402       <returns>A <see cref="T:System.Drawing.Size"></see> structure that is the result of the addition operation.</returns>
403     </member>
404     <member name="M:System.Drawing.Size.op_Equality(System.Drawing.Size,System.Drawing.Size)">
405       <summary>Tests whether two <see cref="T:System.Drawing.Size"></see> structures are equal.</summary>
406       <param name="sz1">The <see cref="T:System.Drawing.Size"></see> structure on the left side of the equality operator.</param>
407       <param name="sz2">The <see cref="T:System.Drawing.Size"></see> structure on the right of the equality operator.</param>
408       <returns>true if <paramref name="sz1">sz1</paramref> and <paramref name="sz2">sz2</paramref> have equal width and height; otherwise, false.</returns>
409     </member>
410     <member name="M:System.Drawing.Size.op_Explicit(System.Drawing.Size to System.Drawing.Point)">
411       <param name="size"></param>
412       <returns></returns>
413     </member>
414     <member name="M:System.Drawing.Size.op_Implicit(System.Drawing.Size to System.Drawing.SizeF)">
415       <param name="p"></param>
416       <returns></returns>
417     </member>
418     <member name="M:System.Drawing.Size.op_Inequality(System.Drawing.Size,System.Drawing.Size)">
419       <summary>Tests whether two <see cref="T:System.Drawing.Size"></see> structures are different.</summary>
420       <param name="sz1">The <see cref="T:System.Drawing.Size"></see> structure on the left of the inequality operator.</param>
421       <param name="sz2">The <see cref="T:System.Drawing.Size"></see> structure on the right of the inequality operator.</param>
422       <returns>true if <paramref name="sz1">sz1</paramref> and <paramref name="sz2">sz2</paramref> differ either in width or height; false if <paramref name="sz1">sz1</paramref> and <paramref name="sz2">sz2</paramref> are equal.</returns>
423     </member>
424     <member name="M:System.Drawing.Size.op_Subtraction(System.Drawing.Size,System.Drawing.Size)">
425       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.Size"></see> structure from the width and height of another <see cref="T:System.Drawing.Size"></see> structure.</summary>
426       <param name="sz1">The <see cref="T:System.Drawing.Size"></see> structure on the left side of the subtraction operator.</param>
427       <param name="sz2">The <see cref="T:System.Drawing.Size"></see> structure on the right side of the subtraction operator.</param>
428       <returns>A <see cref="T:System.Drawing.Size"></see> structure that is the result of the subtraction operation.</returns>
429     </member>
430     <member name="M:System.Drawing.Size.Round(System.Drawing.SizeF)">
431       <summary>Converts the specified <see cref="T:System.Drawing.SizeF"></see> structure to a <see cref="T:System.Drawing.Size"></see> structure by rounding the values of the <see cref="T:System.Drawing.SizeF"></see> structure to the nearest integer values.</summary>
432       <param name="value">The <see cref="T:System.Drawing.SizeF"></see> structure to convert.</param>
433       <returns>The <see cref="T:System.Drawing.Size"></see> structure this method converts to.</returns>
434     </member>
435     <member name="M:System.Drawing.Size.Subtract(System.Drawing.Size,System.Drawing.Size)">
436       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.Size"></see> structure from the width and height of another <see cref="T:System.Drawing.Size"></see> structure.</summary>
437       <param name="sz1">The <see cref="T:System.Drawing.Size"></see> structure on the left side of the subtraction operator.</param>
438       <param name="sz2">The <see cref="T:System.Drawing.Size"></see> structure on the right side of the subtraction operator.</param>
439       <returns>A <see cref="T:System.Drawing.Size"></see> structure that is a result of the subtraction operation.</returns>
440     </member>
441     <member name="M:System.Drawing.Size.ToString">
442       <summary>Creates a human-readable string that represents this <see cref="T:System.Drawing.Size"></see> structure.</summary>
443       <returns>A string that represents this <see cref="T:System.Drawing.Size"></see>.</returns>
444     </member>
445     <member name="M:System.Drawing.Size.Truncate(System.Drawing.SizeF)">
446       <summary>Converts the specified <see cref="T:System.Drawing.SizeF"></see> structure to a <see cref="T:System.Drawing.Size"></see> structure by truncating the values of the <see cref="T:System.Drawing.SizeF"></see> structure to the next lower integer values.</summary>
447       <param name="value">The <see cref="T:System.Drawing.SizeF"></see> structure to convert.</param>
448       <returns>The <see cref="T:System.Drawing.Size"></see> structure this method converts to.</returns>
449     </member>
450     <member name="P:System.Drawing.Size.Width">
451       <summary>Gets or sets the horizontal component of this <see cref="T:System.Drawing.Size"></see> structure.</summary>
452       <returns>The horizontal component of this <see cref="T:System.Drawing.Size"></see> structure, typically measured in pixels.</returns>
453     </member>
454     <member name="T:System.Drawing.SizeF">
455       <summary>Stores an ordered pair of floating-point numbers, typically the width and height of a rectangle.</summary>
456     </member>
457     <member name="M:System.Drawing.SizeF.#ctor(System.Drawing.PointF)">
458       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF"></see> structure from the specified <see cref="T:System.Drawing.PointF"></see> structure.</summary>
459       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> structure from which to initialize this <see cref="T:System.Drawing.SizeF"></see> structure.</param>
460     </member>
461     <member name="M:System.Drawing.SizeF.#ctor(System.Drawing.SizeF)">
462       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF"></see> structure from the specified existing <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
463       <param name="size">The <see cref="T:System.Drawing.SizeF"></see> structure from which to create the new <see cref="T:System.Drawing.SizeF"></see> structure.</param>
464     </member>
465     <member name="M:System.Drawing.SizeF.#ctor(System.Single,System.Single)">
466       <summary>Initializes a new instance of the <see cref="T:System.Drawing.SizeF"></see> structure from the specified dimensions.</summary>
467       <param name="width">The width component of the new <see cref="T:System.Drawing.SizeF"></see> structure.</param>
468       <param name="height">The height component of the new <see cref="T:System.Drawing.SizeF"></see> structure.</param>
469     </member>
470     <member name="M:System.Drawing.SizeF.Add(System.Drawing.SizeF,System.Drawing.SizeF)">
471       <summary>Adds the width and height of one <see cref="T:System.Drawing.SizeF"></see> structure to the width and height of another <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
472       <param name="sz1">The first <see cref="T:System.Drawing.SizeF"></see> structure to add.</param>
473       <param name="sz2">The second <see cref="T:System.Drawing.SizeF"></see> structure to add.</param>
474       <returns>A <see cref="T:System.Drawing.SizeF"></see> structure that is the result of the addition operation.</returns>
475     </member>
476     <member name="F:System.Drawing.SizeF.Empty">
477       <summary>Gets a <see cref="T:System.Drawing.SizeF"></see> structure that has a <see cref="P:System.Drawing.SizeF.Height"></see> and <see cref="P:System.Drawing.SizeF.Width"></see> value of 0.</summary>
478       <returns></returns>
479     </member>
480     <member name="M:System.Drawing.SizeF.Equals(System.Drawing.SizeF)">
481       <param name="other"></param>
482       <returns></returns>
483     </member>
484     <member name="M:System.Drawing.SizeF.Equals(System.Object)">
485       <summary>Tests to see whether the specified object is a <see cref="T:System.Drawing.SizeF"></see> structure with the same dimensions as this <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
486       <param name="obj">The <see cref="T:System.Object"></see> to test.</param>
487       <returns>This method returns true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.SizeF"></see> and has the same width and height as this <see cref="T:System.Drawing.SizeF"></see>; otherwise, false.</returns>
488     </member>
489     <member name="M:System.Drawing.SizeF.GetHashCode">
490       <summary>Returns a hash code for this <see cref="T:System.Drawing.Size"></see> structure.</summary>
491       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.Size"></see> structure.</returns>
492     </member>
493     <member name="P:System.Drawing.SizeF.Height">
494       <summary>Gets or sets the vertical component of this <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
495       <returns>The vertical component of this <see cref="T:System.Drawing.SizeF"></see> structure, typically measured in pixels.</returns>
496     </member>
497     <member name="P:System.Drawing.SizeF.IsEmpty">
498       <summary>Gets a value that indicates whether this <see cref="T:System.Drawing.SizeF"></see> structure has zero width and height.</summary>
499       <returns>This property returns true when this <see cref="T:System.Drawing.SizeF"></see> structure has both a width and height of zero; otherwise, false.</returns>
500     </member>
501     <member name="M:System.Drawing.SizeF.op_Addition(System.Drawing.SizeF,System.Drawing.SizeF)">
502       <summary>Adds the width and height of one <see cref="T:System.Drawing.SizeF"></see> structure to the width and height of another <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
503       <param name="sz1">The first <see cref="T:System.Drawing.SizeF"></see> structure to add.</param>
504       <param name="sz2">The second <see cref="T:System.Drawing.SizeF"></see> structure to add.</param>
505       <returns>A <see cref="T:System.Drawing.Size"></see> structure that is the result of the addition operation.</returns>
506     </member>
507     <member name="M:System.Drawing.SizeF.op_Equality(System.Drawing.SizeF,System.Drawing.SizeF)">
508       <summary>Tests whether two <see cref="T:System.Drawing.SizeF"></see> structures are equal.</summary>
509       <param name="sz1">The <see cref="T:System.Drawing.SizeF"></see> structure on the left side of the equality operator.</param>
510       <param name="sz2">The <see cref="T:System.Drawing.SizeF"></see> structure on the right of the equality operator.</param>
511       <returns>This operator returns true if <paramref name="sz1">sz1</paramref> and <paramref name="sz2">sz2</paramref> have equal width and height; otherwise, false.</returns>
512     </member>
513     <member name="M:System.Drawing.SizeF.op_Explicit(System.Drawing.SizeF to System.Drawing.PointF)">
514       <param name="size"></param>
515       <returns></returns>
516     </member>
517     <member name="M:System.Drawing.SizeF.op_Inequality(System.Drawing.SizeF,System.Drawing.SizeF)">
518       <summary>Tests whether two <see cref="T:System.Drawing.SizeF"></see> structures are different.</summary>
519       <param name="sz1">The <see cref="T:System.Drawing.SizeF"></see> structure on the left of the inequality operator.</param>
520       <param name="sz2">The <see cref="T:System.Drawing.SizeF"></see> structure on the right of the inequality operator.</param>
521       <returns>This operator returns true if <paramref name="sz1">sz1</paramref> and <paramref name="sz2">sz2</paramref> differ either in width or height; false if <paramref name="sz1">sz1</paramref> and <paramref name="sz2">sz2</paramref> are equal.</returns>
522     </member>
523     <member name="M:System.Drawing.SizeF.op_Subtraction(System.Drawing.SizeF,System.Drawing.SizeF)">
524       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.SizeF"></see> structure from the width and height of another <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
525       <param name="sz1">The <see cref="T:System.Drawing.SizeF"></see> structure on the left side of the subtraction operator.</param>
526       <param name="sz2">The <see cref="T:System.Drawing.SizeF"></see> structure on the right side of the subtraction operator.</param>
527       <returns>A <see cref="T:System.Drawing.SizeF"></see> that is the result of the subtraction operation.</returns>
528     </member>
529     <member name="M:System.Drawing.SizeF.Subtract(System.Drawing.SizeF,System.Drawing.SizeF)">
530       <summary>Subtracts the width and height of one <see cref="T:System.Drawing.SizeF"></see> structure from the width and height of another <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
531       <param name="sz1">The <see cref="T:System.Drawing.SizeF"></see> structure on the left side of the subtraction operator.</param>
532       <param name="sz2">The <see cref="T:System.Drawing.SizeF"></see> structure on the right side of the subtraction operator.</param>
533       <returns>A <see cref="T:System.Drawing.SizeF"></see> structure that is a result of the subtraction operation.</returns>
534     </member>
535     <member name="M:System.Drawing.SizeF.ToPointF">
536       <summary>Converts a <see cref="T:System.Drawing.SizeF"></see> structure to a <see cref="T:System.Drawing.PointF"></see> structure.</summary>
537       <returns>Returns a <see cref="T:System.Drawing.PointF"></see> structure.</returns>
538     </member>
539     <member name="M:System.Drawing.SizeF.ToSize">
540       <summary>Converts a <see cref="T:System.Drawing.SizeF"></see> structure to a <see cref="T:System.Drawing.Size"></see> structure.</summary>
541       <returns>Returns a <see cref="T:System.Drawing.Size"></see> structure.</returns>
542     </member>
543     <member name="M:System.Drawing.SizeF.ToString">
544       <summary>Creates a human-readable string that represents this <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
545       <returns>A string that represents this <see cref="T:System.Drawing.SizeF"></see> structure.</returns>
546     </member>
547     <member name="P:System.Drawing.SizeF.Width">
548       <summary>Gets or sets the horizontal component of this <see cref="T:System.Drawing.SizeF"></see> structure.</summary>
549       <returns>The horizontal component of this <see cref="T:System.Drawing.SizeF"></see> structure, typically measured in pixels.</returns>
550     </member>
551     <member name="T:System.Drawing.Point">
552       <summary>Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.</summary>
553     </member>
554     <member name="M:System.Drawing.Point.#ctor(System.Drawing.Size)">
555       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Point"></see> class from a <see cref="T:System.Drawing.Size"></see>.</summary>
556       <param name="sz">A <see cref="T:System.Drawing.Size"></see> that specifies the coordinates for the new <see cref="T:System.Drawing.Point"></see>.</param>
557     </member>
558     <member name="M:System.Drawing.Point.#ctor(System.Int32)">
559       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Point"></see> class using coordinates specified by an integer value.</summary>
560       <param name="dw">A 32-bit integer that specifies the coordinates for the new <see cref="T:System.Drawing.Point"></see>.</param>
561     </member>
562     <member name="M:System.Drawing.Point.#ctor(System.Int32,System.Int32)">
563       <summary>Initializes a new instance of the <see cref="T:System.Drawing.Point"></see> class with the specified coordinates.</summary>
564       <param name="x">The horizontal position of the point.</param>
565       <param name="y">The vertical position of the point.</param>
566     </member>
567     <member name="M:System.Drawing.Point.Add(System.Drawing.Point,System.Drawing.Size)">
568       <summary>Adds the specified <see cref="T:System.Drawing.Size"></see> to the specified <see cref="T:System.Drawing.Point"></see>.</summary>
569       <param name="pt">The <see cref="T:System.Drawing.Point"></see> to add.</param>
570       <param name="sz">The <see cref="T:System.Drawing.Size"></see> to add</param>
571       <returns>The <see cref="T:System.Drawing.Point"></see> that is the result of the addition operation.</returns>
572     </member>
573     <member name="M:System.Drawing.Point.Ceiling(System.Drawing.PointF)">
574       <summary>Converts the specified <see cref="T:System.Drawing.PointF"></see> to a <see cref="T:System.Drawing.Point"></see> by rounding the values of the <see cref="T:System.Drawing.PointF"></see> to the next higher integer values.</summary>
575       <param name="value">The <see cref="T:System.Drawing.PointF"></see> to convert.</param>
576       <returns>The <see cref="T:System.Drawing.Point"></see> this method converts to.</returns>
577     </member>
578     <member name="F:System.Drawing.Point.Empty">
579       <summary>Represents a <see cref="T:System.Drawing.Point"></see> that has <see cref="P:System.Drawing.Point.X"></see> and <see cref="P:System.Drawing.Point.Y"></see> values set to zero.</summary>
580       <returns></returns>
581     </member>
582     <member name="M:System.Drawing.Point.Equals(System.Drawing.Point)">
583       <param name="other"></param>
584       <returns></returns>
585     </member>
586     <member name="M:System.Drawing.Point.Equals(System.Object)">
587       <summary>Specifies whether this <see cref="T:System.Drawing.Point"></see> contains the same coordinates as the specified <see cref="T:System.Object"></see>.</summary>
588       <param name="obj">The <see cref="T:System.Object"></see> to test.</param>
589       <returns>true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.Point"></see> and has the same coordinates as this <see cref="T:System.Drawing.Point"></see>.</returns>
590     </member>
591     <member name="M:System.Drawing.Point.GetHashCode">
592       <summary>Returns a hash code for this <see cref="T:System.Drawing.Point"></see>.</summary>
593       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.Point"></see>.</returns>
594     </member>
595     <member name="P:System.Drawing.Point.IsEmpty">
596       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.Point"></see> is empty.</summary>
597       <returns>true if both <see cref="P:System.Drawing.Point.X"></see> and <see cref="P:System.Drawing.Point.Y"></see> are 0; otherwise, false.</returns>
598     </member>
599     <member name="M:System.Drawing.Point.Offset(System.Int32,System.Int32)">
600       <summary>Translates this <see cref="T:System.Drawing.Point"></see> by the specified amount.</summary>
601       <param name="dx">The amount to offset the x-coordinate.</param>
602       <param name="dy">The amount to offset the y-coordinate.</param>
603     </member>
604     <member name="M:System.Drawing.Point.Offset(System.Drawing.Point)">
605       <summary>Translates this <see cref="T:System.Drawing.Point"></see> by the specified <see cref="T:System.Drawing.Point"></see>.</summary>
606       <param name="p">The <see cref="T:System.Drawing.Point"></see> used offset this <see cref="T:System.Drawing.Point"></see>.</param>
607     </member>
608     <member name="M:System.Drawing.Point.op_Addition(System.Drawing.Point,System.Drawing.Size)">
609       <summary>Translates a <see cref="T:System.Drawing.Point"></see> by a given <see cref="T:System.Drawing.Size"></see>.</summary>
610       <param name="pt">The <see cref="T:System.Drawing.Point"></see> to translate.</param>
611       <param name="sz">A <see cref="T:System.Drawing.Size"></see> that specifies the pair of numbers to add to the coordinates of pt.</param>
612       <returns>The translated <see cref="T:System.Drawing.Point"></see>.</returns>
613     </member>
614     <member name="M:System.Drawing.Point.op_Equality(System.Drawing.Point,System.Drawing.Point)">
615       <summary>Compares two <see cref="T:System.Drawing.Point"></see> objects. The result specifies whether the values of the <see cref="P:System.Drawing.Point.X"></see> and <see cref="P:System.Drawing.Point.Y"></see> properties of the two <see cref="T:System.Drawing.Point"></see> objects are equal.</summary>
616       <param name="left">A <see cref="T:System.Drawing.Point"></see> to compare.</param>
617       <param name="right">A <see cref="T:System.Drawing.Point"></see> to compare.</param>
618       <returns>true if the <see cref="P:System.Drawing.Point.X"></see> and <see cref="P:System.Drawing.Point.Y"></see> values of <paramref name="left">left</paramref> and <paramref name="right">right</paramref> are equal; otherwise, false.</returns>
619     </member>
620     <member name="M:System.Drawing.Point.op_Explicit(System.Drawing.Point to System.Drawing.Size)">
621       <param name="p"></param>
622       <returns></returns>
623     </member>
624     <member name="M:System.Drawing.Point.op_Implicit(System.Drawing.Point to System.Drawing.PointF)">
625       <param name="p"></param>
626       <returns></returns>
627     </member>
628     <member name="M:System.Drawing.Point.op_Inequality(System.Drawing.Point,System.Drawing.Point)">
629       <summary>Compares two <see cref="T:System.Drawing.Point"></see> objects. The result specifies whether the values of the <see cref="P:System.Drawing.Point.X"></see> or <see cref="P:System.Drawing.Point.Y"></see> properties of the two <see cref="T:System.Drawing.Point"></see> objects are unequal.</summary>
630       <param name="left">A <see cref="T:System.Drawing.Point"></see> to compare.</param>
631       <param name="right">A <see cref="T:System.Drawing.Point"></see> to compare.</param>
632       <returns>true if the values of either the <see cref="P:System.Drawing.Point.X"></see> properties or the <see cref="P:System.Drawing.Point.Y"></see> properties of <paramref name="left">left</paramref> and <paramref name="right">right</paramref> differ; otherwise, false.</returns>
633     </member>
634     <member name="M:System.Drawing.Point.op_Subtraction(System.Drawing.Point,System.Drawing.Size)">
635       <summary>Translates a <see cref="T:System.Drawing.Point"></see> by the negative of a given <see cref="T:System.Drawing.Size"></see>.</summary>
636       <param name="pt">The <see cref="T:System.Drawing.Point"></see> to translate.</param>
637       <param name="sz">A <see cref="T:System.Drawing.Size"></see> that specifies the pair of numbers to subtract from the coordinates of pt.</param>
638       <returns>A <see cref="T:System.Drawing.Point"></see> structure that is translated by the negative of a given <see cref="T:System.Drawing.Size"></see> structure.</returns>
639     </member>
640     <member name="M:System.Drawing.Point.Round(System.Drawing.PointF)">
641       <summary>Converts the specified <see cref="T:System.Drawing.PointF"></see> to a <see cref="T:System.Drawing.Point"></see> object by rounding the <see cref="T:System.Drawing.Point"></see> values to the nearest integer.</summary>
642       <param name="value">The <see cref="T:System.Drawing.PointF"></see> to convert.</param>
643       <returns>The <see cref="T:System.Drawing.Point"></see> this method converts to.</returns>
644     </member>
645     <member name="M:System.Drawing.Point.Subtract(System.Drawing.Point,System.Drawing.Size)">
646       <summary>Returns the result of subtracting specified <see cref="T:System.Drawing.Size"></see> from the specified <see cref="T:System.Drawing.Point"></see>.</summary>
647       <param name="pt">The <see cref="T:System.Drawing.Point"></see> to be subtracted from.</param>
648       <param name="sz">The <see cref="T:System.Drawing.Size"></see> to subtract from the <see cref="T:System.Drawing.Point"></see>.</param>
649       <returns>The <see cref="T:System.Drawing.Point"></see> that is the result of the subtraction operation.</returns>
650     </member>
651     <member name="M:System.Drawing.Point.ToString">
652       <summary>Converts this <see cref="T:System.Drawing.Point"></see> to a human-readable string.</summary>
653       <returns>A string that represents this <see cref="T:System.Drawing.Point"></see>.</returns>
654     </member>
655     <member name="M:System.Drawing.Point.Truncate(System.Drawing.PointF)">
656       <summary>Converts the specified <see cref="T:System.Drawing.PointF"></see> to a <see cref="T:System.Drawing.Point"></see> by truncating the values of the <see cref="T:System.Drawing.Point"></see>.</summary>
657       <param name="value">The <see cref="T:System.Drawing.PointF"></see> to convert.</param>
658       <returns>The <see cref="T:System.Drawing.Point"></see> this method converts to.</returns>
659     </member>
660     <member name="P:System.Drawing.Point.X">
661       <summary>Gets or sets the x-coordinate of this <see cref="T:System.Drawing.Point"></see>.</summary>
662       <returns>The x-coordinate of this <see cref="T:System.Drawing.Point"></see>.</returns>
663     </member>
664     <member name="P:System.Drawing.Point.Y">
665       <summary>Gets or sets the y-coordinate of this <see cref="T:System.Drawing.Point"></see>.</summary>
666       <returns>The y-coordinate of this <see cref="T:System.Drawing.Point"></see>.</returns>
667     </member>
668     <member name="T:System.Drawing.PointF">
669       <summary>Represents an ordered pair of floating-point x- and y-coordinates that defines a point in a two-dimensional plane.</summary>
670     </member>
671     <member name="M:System.Drawing.PointF.#ctor(System.Single,System.Single)">
672       <summary>Initializes a new instance of the <see cref="T:System.Drawing.PointF"></see> class with the specified coordinates.</summary>
673       <param name="x">The horizontal position of the point.</param>
674       <param name="y">The vertical position of the point.</param>
675     </member>
676     <member name="M:System.Drawing.PointF.Add(System.Drawing.PointF,System.Drawing.Size)">
677       <summary>Translates a given <see cref="T:System.Drawing.PointF"></see> by the specified <see cref="T:System.Drawing.Size"></see>.</summary>
678       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
679       <param name="sz">The <see cref="T:System.Drawing.Size"></see> that specifies the numbers to add to the coordinates of pt.</param>
680       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
681     </member>
682     <member name="M:System.Drawing.PointF.Add(System.Drawing.PointF,System.Drawing.SizeF)">
683       <summary>Translates a given <see cref="T:System.Drawing.PointF"></see> by a specified <see cref="T:System.Drawing.SizeF"></see>.</summary>
684       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
685       <param name="sz">The <see cref="T:System.Drawing.SizeF"></see> that specifies the numbers to add to the coordinates of pt.</param>
686       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
687     </member>
688     <member name="F:System.Drawing.PointF.Empty">
689       <summary>Represents a new instance of the <see cref="T:System.Drawing.PointF"></see> class with member data left uninitialized.</summary>
690       <returns></returns>
691     </member>
692     <member name="M:System.Drawing.PointF.Equals(System.Drawing.PointF)">
693       <param name="other"></param>
694       <returns></returns>
695     </member>
696     <member name="M:System.Drawing.PointF.Equals(System.Object)">
697       <summary>Specifies whether this <see cref="T:System.Drawing.PointF"></see> contains the same coordinates as the specified <see cref="T:System.Object"></see>.</summary>
698       <param name="obj">The <see cref="T:System.Object"></see> to test.</param>
699       <returns>This method returns true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.PointF"></see> and has the same coordinates as this <see cref="T:System.Drawing.Point"></see>.</returns>
700     </member>
701     <member name="M:System.Drawing.PointF.GetHashCode">
702       <summary>Returns a hash code for this <see cref="T:System.Drawing.PointF"></see> structure.</summary>
703       <returns>An integer value that specifies a hash value for this <see cref="T:System.Drawing.PointF"></see> structure.</returns>
704     </member>
705     <member name="P:System.Drawing.PointF.IsEmpty">
706       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.PointF"></see> is empty.</summary>
707       <returns>true if both <see cref="P:System.Drawing.PointF.X"></see> and <see cref="P:System.Drawing.PointF.Y"></see> are 0; otherwise, false.</returns>
708     </member>
709     <member name="M:System.Drawing.PointF.op_Addition(System.Drawing.PointF,System.Drawing.SizeF)">
710       <summary>Translates the <see cref="T:System.Drawing.PointF"></see> by the specified <see cref="T:System.Drawing.SizeF"></see>.</summary>
711       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
712       <param name="sz">The <see cref="T:System.Drawing.SizeF"></see> that specifies the numbers to add to the x- and y-coordinates of the <see cref="T:System.Drawing.PointF"></see>.</param>
713       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
714     </member>
715     <member name="M:System.Drawing.PointF.op_Addition(System.Drawing.PointF,System.Drawing.Size)">
716       <summary>Translates a <see cref="T:System.Drawing.PointF"></see> by a given <see cref="T:System.Drawing.Size"></see>.</summary>
717       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
718       <param name="sz">A <see cref="T:System.Drawing.Size"></see> that specifies the pair of numbers to add to the coordinates of pt.</param>
719       <returns>Returns the translated <see cref="T:System.Drawing.PointF"></see>.</returns>
720     </member>
721     <member name="M:System.Drawing.PointF.op_Equality(System.Drawing.PointF,System.Drawing.PointF)">
722       <summary>Compares two <see cref="T:System.Drawing.PointF"></see> structures. The result specifies whether the values of the <see cref="P:System.Drawing.PointF.X"></see> and <see cref="P:System.Drawing.PointF.Y"></see> properties of the two <see cref="T:System.Drawing.PointF"></see> structures are equal.</summary>
723       <param name="left">A <see cref="T:System.Drawing.PointF"></see> to compare.</param>
724       <param name="right">A <see cref="T:System.Drawing.PointF"></see> to compare.</param>
725       <returns>true if the <see cref="P:System.Drawing.PointF.X"></see> and <see cref="P:System.Drawing.PointF.Y"></see> values of the left and right <see cref="T:System.Drawing.PointF"></see> structures are equal; otherwise, false.</returns>
726     </member>
727     <member name="M:System.Drawing.PointF.op_Inequality(System.Drawing.PointF,System.Drawing.PointF)">
728       <summary>Determines whether the coordinates of the specified points are not equal.</summary>
729       <param name="left">A <see cref="T:System.Drawing.PointF"></see> to compare.</param>
730       <param name="right">A <see cref="T:System.Drawing.PointF"></see> to compare.</param>
731       <returns>true to indicate the <see cref="P:System.Drawing.PointF.X"></see> and <see cref="P:System.Drawing.PointF.Y"></see> values of <paramref name="left">left</paramref> and <paramref name="right">right</paramref> are not equal; otherwise, false.</returns>
732     </member>
733     <member name="M:System.Drawing.PointF.op_Subtraction(System.Drawing.PointF,System.Drawing.Size)">
734       <summary>Translates a <see cref="T:System.Drawing.PointF"></see> by the negative of a given <see cref="T:System.Drawing.Size"></see>.</summary>
735       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
736       <param name="sz">The <see cref="T:System.Drawing.Size"></see> that specifies the numbers to subtract from the coordinates of pt.</param>
737       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
738     </member>
739     <member name="M:System.Drawing.PointF.op_Subtraction(System.Drawing.PointF,System.Drawing.SizeF)">
740       <summary>Translates a <see cref="T:System.Drawing.PointF"></see> by the negative of a specified <see cref="T:System.Drawing.SizeF"></see>.</summary>
741       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
742       <param name="sz">The <see cref="T:System.Drawing.SizeF"></see> that specifies the numbers to subtract from the coordinates of pt.</param>
743       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
744     </member>
745     <member name="M:System.Drawing.PointF.Subtract(System.Drawing.PointF,System.Drawing.Size)">
746       <summary>Translates a <see cref="T:System.Drawing.PointF"></see> by the negative of a specified size.</summary>
747       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
748       <param name="sz">The <see cref="T:System.Drawing.Size"></see> that specifies the numbers to subtract from the coordinates of pt.</param>
749       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
750     </member>
751     <member name="M:System.Drawing.PointF.Subtract(System.Drawing.PointF,System.Drawing.SizeF)">
752       <summary>Translates a <see cref="T:System.Drawing.PointF"></see> by the negative of a specified size.</summary>
753       <param name="pt">The <see cref="T:System.Drawing.PointF"></see> to translate.</param>
754       <param name="sz">The <see cref="T:System.Drawing.SizeF"></see> that specifies the numbers to subtract from the coordinates of pt.</param>
755       <returns>The translated <see cref="T:System.Drawing.PointF"></see>.</returns>
756     </member>
757     <member name="M:System.Drawing.PointF.ToString">
758       <summary>Converts this <see cref="T:System.Drawing.PointF"></see> to a human readable string.</summary>
759       <returns>A string that represents this <see cref="T:System.Drawing.PointF"></see>.</returns>
760     </member>
761     <member name="P:System.Drawing.PointF.X">
762       <summary>Gets or sets the x-coordinate of this <see cref="T:System.Drawing.PointF"></see>.</summary>
763       <returns>The x-coordinate of this <see cref="T:System.Drawing.PointF"></see>.</returns>
764     </member>
765     <member name="P:System.Drawing.PointF.Y">
766       <summary>Gets or sets the y-coordinate of this <see cref="T:System.Drawing.PointF"></see>.</summary>
767       <returns>The y-coordinate of this <see cref="T:System.Drawing.PointF"></see>.</returns>
768     </member>
769     <member name="T:System.Drawing.Color">
770       <summary>Represents an ARGB (alpha, red, green, blue) color.</summary>
771     </member>
772     <member name="P:System.Drawing.Color.A">
773       <summary>Gets the alpha component value of this <see cref="T:System.Drawing.Color"></see> structure.</summary>
774       <returns>The alpha component value of this <see cref="T:System.Drawing.Color"></see>.</returns>
775     </member>
776     <member name="P:System.Drawing.Color.AliceBlue">
777       <summary>Gets a system-defined color that has an ARGB value of #FFF0F8FF.</summary>
778       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
779     </member>
780     <member name="P:System.Drawing.Color.AntiqueWhite">
781       <summary>Gets a system-defined color that has an ARGB value of #FFFAEBD7.</summary>
782       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
783     </member>
784     <member name="P:System.Drawing.Color.Aqua">
785       <summary>Gets a system-defined color that has an ARGB value of #FF00FFFF.</summary>
786       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
787     </member>
788     <member name="P:System.Drawing.Color.Aquamarine">
789       <summary>Gets a system-defined color that has an ARGB value of #FF7FFFD4.</summary>
790       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
791     </member>
792     <member name="P:System.Drawing.Color.Azure">
793       <summary>Gets a system-defined color that has an ARGB value of #FFF0FFFF.</summary>
794       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
795     </member>
796     <member name="P:System.Drawing.Color.B">
797       <summary>Gets the blue component value of this <see cref="T:System.Drawing.Color"></see> structure.</summary>
798       <returns>The blue component value of this <see cref="T:System.Drawing.Color"></see>.</returns>
799     </member>
800     <member name="P:System.Drawing.Color.Beige">
801       <summary>Gets a system-defined color that has an ARGB value of #FFF5F5DC.</summary>
802       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
803     </member>
804     <member name="P:System.Drawing.Color.Bisque">
805       <summary>Gets a system-defined color that has an ARGB value of #FFFFE4C4.</summary>
806       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
807     </member>
808     <member name="P:System.Drawing.Color.Black">
809       <summary>Gets a system-defined color that has an ARGB value of #FF000000.</summary>
810       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
811     </member>
812     <member name="P:System.Drawing.Color.BlanchedAlmond">
813       <summary>Gets a system-defined color that has an ARGB value of #FFFFEBCD.</summary>
814       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
815     </member>
816     <member name="P:System.Drawing.Color.Blue">
817       <summary>Gets a system-defined color that has an ARGB value of #FF0000FF.</summary>
818       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
819     </member>
820     <member name="P:System.Drawing.Color.BlueViolet">
821       <summary>Gets a system-defined color that has an ARGB value of #FF8A2BE2.</summary>
822       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
823     </member>
824     <member name="P:System.Drawing.Color.Brown">
825       <summary>Gets a system-defined color that has an ARGB value of #FFA52A2A.</summary>
826       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
827     </member>
828     <member name="P:System.Drawing.Color.BurlyWood">
829       <summary>Gets a system-defined color that has an ARGB value of #FFDEB887.</summary>
830       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
831     </member>
832     <member name="P:System.Drawing.Color.CadetBlue">
833       <summary>Gets a system-defined color that has an ARGB value of #FF5F9EA0.</summary>
834       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
835     </member>
836     <member name="P:System.Drawing.Color.Chartreuse">
837       <summary>Gets a system-defined color that has an ARGB value of #FF7FFF00.</summary>
838       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
839     </member>
840     <member name="P:System.Drawing.Color.Chocolate">
841       <summary>Gets a system-defined color that has an ARGB value of #FFD2691E.</summary>
842       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
843     </member>
844     <member name="P:System.Drawing.Color.Coral">
845       <summary>Gets a system-defined color that has an ARGB value of #FFFF7F50.</summary>
846       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
847     </member>
848     <member name="P:System.Drawing.Color.CornflowerBlue">
849       <summary>Gets a system-defined color that has an ARGB value of #FF6495ED.</summary>
850       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
851     </member>
852     <member name="P:System.Drawing.Color.Cornsilk">
853       <summary>Gets a system-defined color that has an ARGB value of #FFFFF8DC.</summary>
854       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
855     </member>
856     <member name="P:System.Drawing.Color.Crimson">
857       <summary>Gets a system-defined color that has an ARGB value of #FFDC143C.</summary>
858       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
859     </member>
860     <member name="P:System.Drawing.Color.Cyan">
861       <summary>Gets a system-defined color that has an ARGB value of #FF00FFFF.</summary>
862       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
863     </member>
864     <member name="P:System.Drawing.Color.DarkBlue">
865       <summary>Gets a system-defined color that has an ARGB value of #FF00008B.</summary>
866       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
867     </member>
868     <member name="P:System.Drawing.Color.DarkCyan">
869       <summary>Gets a system-defined color that has an ARGB value of #FF008B8B.</summary>
870       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
871     </member>
872     <member name="P:System.Drawing.Color.DarkGoldenrod">
873       <summary>Gets a system-defined color that has an ARGB value of #FFB8860B.</summary>
874       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
875     </member>
876     <member name="P:System.Drawing.Color.DarkGray">
877       <summary>Gets a system-defined color that has an ARGB value of #FFA9A9A9.</summary>
878       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
879     </member>
880     <member name="P:System.Drawing.Color.DarkGreen">
881       <summary>Gets a system-defined color that has an ARGB value of #FF006400.</summary>
882       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
883     </member>
884     <member name="P:System.Drawing.Color.DarkKhaki">
885       <summary>Gets a system-defined color that has an ARGB value of #FFBDB76B.</summary>
886       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
887     </member>
888     <member name="P:System.Drawing.Color.DarkMagenta">
889       <summary>Gets a system-defined color that has an ARGB value of #FF8B008B.</summary>
890       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
891     </member>
892     <member name="P:System.Drawing.Color.DarkOliveGreen">
893       <summary>Gets a system-defined color that has an ARGB value of #FF556B2F.</summary>
894       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
895     </member>
896     <member name="P:System.Drawing.Color.DarkOrange">
897       <summary>Gets a system-defined color that has an ARGB value of #FFFF8C00.</summary>
898       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
899     </member>
900     <member name="P:System.Drawing.Color.DarkOrchid">
901       <summary>Gets a system-defined color that has an ARGB value of #FF9932CC.</summary>
902       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
903     </member>
904     <member name="P:System.Drawing.Color.DarkRed">
905       <summary>Gets a system-defined color that has an ARGB value of #FF8B0000.</summary>
906       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
907     </member>
908     <member name="P:System.Drawing.Color.DarkSalmon">
909       <summary>Gets a system-defined color that has an ARGB value of #FFE9967A.</summary>
910       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
911     </member>
912     <member name="P:System.Drawing.Color.DarkSeaGreen">
913       <summary>Gets a system-defined color that has an ARGB value of #FF8FBC8F.</summary>
914       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
915     </member>
916     <member name="P:System.Drawing.Color.DarkSlateBlue">
917       <summary>Gets a system-defined color that has an ARGB value of #FF483D8B.</summary>
918       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
919     </member>
920     <member name="P:System.Drawing.Color.DarkSlateGray">
921       <summary>Gets a system-defined color that has an ARGB value of #FF2F4F4F.</summary>
922       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
923     </member>
924     <member name="P:System.Drawing.Color.DarkTurquoise">
925       <summary>Gets a system-defined color that has an ARGB value of #FF00CED1.</summary>
926       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
927     </member>
928     <member name="P:System.Drawing.Color.DarkViolet">
929       <summary>Gets a system-defined color that has an ARGB value of #FF9400D3.</summary>
930       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
931     </member>
932     <member name="P:System.Drawing.Color.DeepPink">
933       <summary>Gets a system-defined color that has an ARGB value of #FFFF1493.</summary>
934       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
935     </member>
936     <member name="P:System.Drawing.Color.DeepSkyBlue">
937       <summary>Gets a system-defined color that has an ARGB value of #FF00BFFF.</summary>
938       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
939     </member>
940     <member name="P:System.Drawing.Color.DimGray">
941       <summary>Gets a system-defined color that has an ARGB value of #FF696969.</summary>
942       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
943     </member>
944     <member name="P:System.Drawing.Color.DodgerBlue">
945       <summary>Gets a system-defined color that has an ARGB value of #FF1E90FF.</summary>
946       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
947     </member>
948     <member name="F:System.Drawing.Color.Empty">
949       <summary>Represents a color that is null.</summary>
950       <returns></returns>
951     </member>
952     <member name="M:System.Drawing.Color.Equals(System.Drawing.Color)">
953       <param name="other"></param>
954       <returns></returns>
955     </member>
956     <member name="M:System.Drawing.Color.Equals(System.Object)">
957       <summary>Tests whether the specified object is a <see cref="T:System.Drawing.Color"></see> structure and is equivalent to this <see cref="T:System.Drawing.Color"></see> structure.</summary>
958       <param name="obj">The object to test.</param>
959       <returns>true if <paramref name="obj">obj</paramref> is a <see cref="T:System.Drawing.Color"></see> structure equivalent to this <see cref="T:System.Drawing.Color"></see> structure; otherwise, false.</returns>
960     </member>
961     <member name="P:System.Drawing.Color.Firebrick">
962       <summary>Gets a system-defined color that has an ARGB value of #FFB22222.</summary>
963       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
964     </member>
965     <member name="P:System.Drawing.Color.FloralWhite">
966       <summary>Gets a system-defined color that has an ARGB value of #FFFFFAF0.</summary>
967       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
968     </member>
969     <member name="P:System.Drawing.Color.ForestGreen">
970       <summary>Gets a system-defined color that has an ARGB value of #FF228B22.</summary>
971       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
972     </member>
973     <member name="M:System.Drawing.Color.FromArgb(System.Int32,System.Int32,System.Int32,System.Int32)">
974       <summary>Creates a <see cref="T:System.Drawing.Color"></see> 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>
975       <param name="alpha">The alpha component. Valid values are 0 through 255.</param>
976       <param name="red">The red component. Valid values are 0 through 255.</param>
977       <param name="green">The green component. Valid values are 0 through 255.</param>
978       <param name="blue">The blue component. Valid values are 0 through 255.</param>
979       <returns>The <see cref="T:System.Drawing.Color"></see> that this method creates.</returns>
980       <exception cref="T:System.ArgumentException"><paramref name="alpha">alpha</paramref>, <paramref name="red">red</paramref>, <paramref name="green">green</paramref>, or <paramref name="blue">blue</paramref> is less than 0 or greater than 255.</exception>
981     </member>
982     <member name="M:System.Drawing.Color.FromArgb(System.Int32,System.Int32,System.Int32)">
983       <summary>Creates a <see cref="T:System.Drawing.Color"></see> 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>
984       <param name="red">The red component value for the new <see cref="T:System.Drawing.Color"></see>. Valid values are 0 through 255.</param>
985       <param name="green">The green component value for the new <see cref="T:System.Drawing.Color"></see>. Valid values are 0 through 255.</param>
986       <param name="blue">The blue component value for the new <see cref="T:System.Drawing.Color"></see>. Valid values are 0 through 255.</param>
987       <returns>The <see cref="T:System.Drawing.Color"></see> that this method creates.</returns>
988       <exception cref="T:System.ArgumentException"><paramref name="red">red</paramref>, <paramref name="green">green</paramref>, or <paramref name="blue">blue</paramref> is less than 0 or greater than 255.</exception>
989     </member>
990     <member name="M:System.Drawing.Color.FromArgb(System.Int32,System.Drawing.Color)">
991       <summary>Creates a <see cref="T:System.Drawing.Color"></see> structure from the specified <see cref="T:System.Drawing.Color"></see> 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>
992       <param name="alpha">The alpha value for the new <see cref="T:System.Drawing.Color"></see>. Valid values are 0 through 255.</param>
993       <param name="baseColor">The <see cref="T:System.Drawing.Color"></see> from which to create the new <see cref="T:System.Drawing.Color"></see>.</param>
994       <returns>The <see cref="T:System.Drawing.Color"></see> that this method creates.</returns>
995       <exception cref="T:System.ArgumentException"><paramref name="alpha">alpha</paramref> is less than 0 or greater than 255.</exception>
996     </member>
997     <member name="M:System.Drawing.Color.FromArgb(System.Int32)">
998       <summary>Creates a <see cref="T:System.Drawing.Color"></see> structure from a 32-bit ARGB value.</summary>
999       <param name="argb">A value specifying the 32-bit ARGB value.</param>
1000       <returns>The <see cref="T:System.Drawing.Color"></see> structure that this method creates.</returns>
1001     </member>
1002     <member name="M:System.Drawing.Color.FromName(System.String)">
1003       <summary>Creates a <see cref="T:System.Drawing.Color"></see> structure from the specified name of a predefined color.</summary>
1004       <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"></see> enumeration.</param>
1005       <returns>The <see cref="T:System.Drawing.Color"></see> that this method creates.</returns>
1006     </member>
1007     <member name="P:System.Drawing.Color.Fuchsia">
1008       <summary>Gets a system-defined color that has an ARGB value of #FFFF00FF.</summary>
1009       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1010     </member>
1011     <member name="P:System.Drawing.Color.G">
1012       <summary>Gets the green component value of this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1013       <returns>The green component value of this <see cref="T:System.Drawing.Color"></see>.</returns>
1014     </member>
1015     <member name="P:System.Drawing.Color.Gainsboro">
1016       <summary>Gets a system-defined color that has an ARGB value of #FFDCDCDC.</summary>
1017       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1018     </member>
1019     <member name="M:System.Drawing.Color.GetBrightness">
1020       <summary>Gets the hue-saturation-brightness (HSB) brightness value for this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1021       <returns>The brightness of this <see cref="T:System.Drawing.Color"></see>. The brightness ranges from 0.0 through 1.0, where 0.0 represents black and 1.0 represents white.</returns>
1022     </member>
1023     <member name="M:System.Drawing.Color.GetHashCode">
1024       <summary>Returns a hash code for this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1025       <returns>An integer value that specifies the hash code for this <see cref="T:System.Drawing.Color"></see>.</returns>
1026     </member>
1027     <member name="M:System.Drawing.Color.GetHue">
1028       <summary>Gets the hue-saturation-brightness (HSB) hue value, in degrees, for this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1029       <returns>The hue, in degrees, of this <see cref="T:System.Drawing.Color"></see>. The hue is measured in degrees, ranging from 0.0 through 360.0, in HSB color space.</returns>
1030     </member>
1031     <member name="M:System.Drawing.Color.GetSaturation">
1032       <summary>Gets the hue-saturation-brightness (HSB) saturation value for this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1033       <returns>The saturation of this <see cref="T:System.Drawing.Color"></see>. The saturation ranges from 0.0 through 1.0, where 0.0 is grayscale and 1.0 is the most saturated.</returns>
1034     </member>
1035     <member name="P:System.Drawing.Color.GhostWhite">
1036       <summary>Gets a system-defined color that has an ARGB value of #FFF8F8FF.</summary>
1037       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1038     </member>
1039     <member name="P:System.Drawing.Color.Gold">
1040       <summary>Gets a system-defined color that has an ARGB value of #FFFFD700.</summary>
1041       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1042     </member>
1043     <member name="P:System.Drawing.Color.Goldenrod">
1044       <summary>Gets a system-defined color that has an ARGB value of #FFDAA520.</summary>
1045       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1046     </member>
1047     <member name="P:System.Drawing.Color.Gray">
1048       <summary>Gets a system-defined color that has an ARGB value of #FF808080.</summary>
1049       <returns>A <see cref="T:System.Drawing.Color"></see> strcture representing a system-defined color.</returns>
1050     </member>
1051     <member name="P:System.Drawing.Color.Green">
1052       <summary>Gets a system-defined color that has an ARGB value of #FF008000.</summary>
1053       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1054     </member>
1055     <member name="P:System.Drawing.Color.GreenYellow">
1056       <summary>Gets a system-defined color that has an ARGB value of #FFADFF2F.</summary>
1057       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1058     </member>
1059     <member name="P:System.Drawing.Color.Honeydew">
1060       <summary>Gets a system-defined color that has an ARGB value of #FFF0FFF0.</summary>
1061       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1062     </member>
1063     <member name="P:System.Drawing.Color.HotPink">
1064       <summary>Gets a system-defined color that has an ARGB value of #FFFF69B4.</summary>
1065       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1066     </member>
1067     <member name="P:System.Drawing.Color.IndianRed">
1068       <summary>Gets a system-defined color that has an ARGB value of #FFCD5C5C.</summary>
1069       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1070     </member>
1071     <member name="P:System.Drawing.Color.Indigo">
1072       <summary>Gets a system-defined color that has an ARGB value of #FF4B0082.</summary>
1073       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1074     </member>
1075     <member name="P:System.Drawing.Color.IsEmpty">
1076       <summary>Specifies whether this <see cref="T:System.Drawing.Color"></see> structure is uninitialized.</summary>
1077       <returns>This property returns true if this color is uninitialized; otherwise, false.</returns>
1078     </member>
1079     <member name="P:System.Drawing.Color.IsNamedColor">
1080       <summary>Gets a value indicating whether this <see cref="T:System.Drawing.Color"></see> structure is a named color or a member of the <see cref="T:System.Drawing.KnownColor"></see> enumeration.</summary>
1081       <returns>true if this <see cref="T:System.Drawing.Color"></see> was created by using either the <see cref="M:System.Drawing.Color.FromName(System.String)"></see> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)"></see> method; otherwise, false.</returns>
1082     </member>
1083     <member name="P:System.Drawing.Color.Ivory">
1084       <summary>Gets a system-defined color that has an ARGB value of #FFFFFFF0.</summary>
1085       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1086     </member>
1087     <member name="P:System.Drawing.Color.Khaki">
1088       <summary>Gets a system-defined color that has an ARGB value of #FFF0E68C.</summary>
1089       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1090     </member>
1091     <member name="P:System.Drawing.Color.Lavender">
1092       <summary>Gets a system-defined color that has an ARGB value of #FFE6E6FA.</summary>
1093       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1094     </member>
1095     <member name="P:System.Drawing.Color.LavenderBlush">
1096       <summary>Gets a system-defined color that has an ARGB value of #FFFFF0F5.</summary>
1097       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1098     </member>
1099     <member name="P:System.Drawing.Color.LawnGreen">
1100       <summary>Gets a system-defined color that has an ARGB value of #FF7CFC00.</summary>
1101       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1102     </member>
1103     <member name="P:System.Drawing.Color.LemonChiffon">
1104       <summary>Gets a system-defined color that has an ARGB value of #FFFFFACD.</summary>
1105       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1106     </member>
1107     <member name="P:System.Drawing.Color.LightBlue">
1108       <summary>Gets a system-defined color that has an ARGB value of #FFADD8E6.</summary>
1109       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1110     </member>
1111     <member name="P:System.Drawing.Color.LightCoral">
1112       <summary>Gets a system-defined color that has an ARGB value of #FFF08080.</summary>
1113       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1114     </member>
1115     <member name="P:System.Drawing.Color.LightCyan">
1116       <summary>Gets a system-defined color that has an ARGB value of #FFE0FFFF.</summary>
1117       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1118     </member>
1119     <member name="P:System.Drawing.Color.LightGoldenrodYellow">
1120       <summary>Gets a system-defined color that has an ARGB value of #FFFAFAD2.</summary>
1121       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1122     </member>
1123     <member name="P:System.Drawing.Color.LightGray">
1124       <summary>Gets a system-defined color that has an ARGB value of #FFD3D3D3.</summary>
1125       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1126     </member>
1127     <member name="P:System.Drawing.Color.LightGreen">
1128       <summary>Gets a system-defined color that has an ARGB value of #FF90EE90.</summary>
1129       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1130     </member>
1131     <member name="P:System.Drawing.Color.LightPink">
1132       <summary>Gets a system-defined color that has an ARGB value of #FFFFB6C1.</summary>
1133       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1134     </member>
1135     <member name="P:System.Drawing.Color.LightSalmon">
1136       <summary>Gets a system-defined color that has an ARGB value of #FFFFA07A.</summary>
1137       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1138     </member>
1139     <member name="P:System.Drawing.Color.LightSeaGreen">
1140       <summary>Gets a system-defined color that has an ARGB value of #FF20B2AA.</summary>
1141       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1142     </member>
1143     <member name="P:System.Drawing.Color.LightSkyBlue">
1144       <summary>Gets a system-defined color that has an ARGB value of #FF87CEFA.</summary>
1145       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1146     </member>
1147     <member name="P:System.Drawing.Color.LightSlateGray">
1148       <summary>Gets a system-defined color that has an ARGB value of #FF778899.</summary>
1149       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1150     </member>
1151     <member name="P:System.Drawing.Color.LightSteelBlue">
1152       <summary>Gets a system-defined color that has an ARGB value of #FFB0C4DE.</summary>
1153       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1154     </member>
1155     <member name="P:System.Drawing.Color.LightYellow">
1156       <summary>Gets a system-defined color that has an ARGB value of #FFFFFFE0.</summary>
1157       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1158     </member>
1159     <member name="P:System.Drawing.Color.Lime">
1160       <summary>Gets a system-defined color that has an ARGB value of #FF00FF00.</summary>
1161       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1162     </member>
1163     <member name="P:System.Drawing.Color.LimeGreen">
1164       <summary>Gets a system-defined color that has an ARGB value of #FF32CD32.</summary>
1165       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1166     </member>
1167     <member name="P:System.Drawing.Color.Linen">
1168       <summary>Gets a system-defined color that has an ARGB value of #FFFAF0E6.</summary>
1169       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1170     </member>
1171     <member name="P:System.Drawing.Color.Magenta">
1172       <summary>Gets a system-defined color that has an ARGB value of #FFFF00FF.</summary>
1173       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1174     </member>
1175     <member name="P:System.Drawing.Color.Maroon">
1176       <summary>Gets a system-defined color that has an ARGB value of #FF800000.</summary>
1177       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1178     </member>
1179     <member name="P:System.Drawing.Color.MediumAquamarine">
1180       <summary>Gets a system-defined color that has an ARGB value of #FF66CDAA.</summary>
1181       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1182     </member>
1183     <member name="P:System.Drawing.Color.MediumBlue">
1184       <summary>Gets a system-defined color that has an ARGB value of #FF0000CD.</summary>
1185       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1186     </member>
1187     <member name="P:System.Drawing.Color.MediumOrchid">
1188       <summary>Gets a system-defined color that has an ARGB value of #FFBA55D3.</summary>
1189       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1190     </member>
1191     <member name="P:System.Drawing.Color.MediumPurple">
1192       <summary>Gets a system-defined color that has an ARGB value of #FF9370DB.</summary>
1193       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1194     </member>
1195     <member name="P:System.Drawing.Color.MediumSeaGreen">
1196       <summary>Gets a system-defined color that has an ARGB value of #FF3CB371.</summary>
1197       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1198     </member>
1199     <member name="P:System.Drawing.Color.MediumSlateBlue">
1200       <summary>Gets a system-defined color that has an ARGB value of #FF7B68EE.</summary>
1201       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1202     </member>
1203     <member name="P:System.Drawing.Color.MediumSpringGreen">
1204       <summary>Gets a system-defined color that has an ARGB value of #FF00FA9A.</summary>
1205       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1206     </member>
1207     <member name="P:System.Drawing.Color.MediumTurquoise">
1208       <summary>Gets a system-defined color that has an ARGB value of #FF48D1CC.</summary>
1209       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1210     </member>
1211     <member name="P:System.Drawing.Color.MediumVioletRed">
1212       <summary>Gets a system-defined color that has an ARGB value of #FFC71585.</summary>
1213       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1214     </member>
1215     <member name="P:System.Drawing.Color.MidnightBlue">
1216       <summary>Gets a system-defined color that has an ARGB value of #FF191970.</summary>
1217       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1218     </member>
1219     <member name="P:System.Drawing.Color.MintCream">
1220       <summary>Gets a system-defined color that has an ARGB value of #FFF5FFFA.</summary>
1221       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1222     </member>
1223     <member name="P:System.Drawing.Color.MistyRose">
1224       <summary>Gets a system-defined color that has an ARGB value of #FFFFE4E1.</summary>
1225       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1226     </member>
1227     <member name="P:System.Drawing.Color.Moccasin">
1228       <summary>Gets a system-defined color that has an ARGB value of #FFFFE4B5.</summary>
1229       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1230     </member>
1231     <member name="P:System.Drawing.Color.Name">
1232       <summary>Gets the name of this <see cref="T:System.Drawing.Color"></see>.</summary>
1233       <returns>The name of this <see cref="T:System.Drawing.Color"></see>.</returns>
1234     </member>
1235     <member name="P:System.Drawing.Color.NavajoWhite">
1236       <summary>Gets a system-defined color that has an ARGB value of #FFFFDEAD.</summary>
1237       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1238     </member>
1239     <member name="P:System.Drawing.Color.Navy">
1240       <summary>Gets a system-defined color that has an ARGB value of #FF000080.</summary>
1241       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1242     </member>
1243     <member name="P:System.Drawing.Color.OldLace">
1244       <summary>Gets a system-defined color that has an ARGB value of #FFFDF5E6.</summary>
1245       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1246     </member>
1247     <member name="P:System.Drawing.Color.Olive">
1248       <summary>Gets a system-defined color that has an ARGB value of #FF808000.</summary>
1249       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1250     </member>
1251     <member name="P:System.Drawing.Color.OliveDrab">
1252       <summary>Gets a system-defined color that has an ARGB value of #FF6B8E23.</summary>
1253       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1254     </member>
1255     <member name="M:System.Drawing.Color.op_Equality(System.Drawing.Color,System.Drawing.Color)">
1256       <summary>Tests whether two specified <see cref="T:System.Drawing.Color"></see> structures are equivalent.</summary>
1257       <param name="left">The <see cref="T:System.Drawing.Color"></see> that is to the left of the equality operator.</param>
1258       <param name="right">The <see cref="T:System.Drawing.Color"></see> that is to the right of the equality operator.</param>
1259       <returns>true if the two <see cref="T:System.Drawing.Color"></see> structures are equal; otherwise, false.</returns>
1260     </member>
1261     <member name="M:System.Drawing.Color.op_Inequality(System.Drawing.Color,System.Drawing.Color)">
1262       <summary>Tests whether two specified <see cref="T:System.Drawing.Color"></see> structures are different.</summary>
1263       <param name="left">The <see cref="T:System.Drawing.Color"></see> that is to the left of the inequality operator.</param>
1264       <param name="right">The <see cref="T:System.Drawing.Color"></see> that is to the right of the inequality operator.</param>
1265       <returns>true if the two <see cref="T:System.Drawing.Color"></see> structures are different; otherwise, false.</returns>
1266     </member>
1267     <member name="P:System.Drawing.Color.Orange">
1268       <summary>Gets a system-defined color that has an ARGB value of #FFFFA500.</summary>
1269       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1270     </member>
1271     <member name="P:System.Drawing.Color.OrangeRed">
1272       <summary>Gets a system-defined color that has an ARGB value of #FFFF4500.</summary>
1273       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1274     </member>
1275     <member name="P:System.Drawing.Color.Orchid">
1276       <summary>Gets a system-defined color that has an ARGB value of #FFDA70D6.</summary>
1277       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1278     </member>
1279     <member name="P:System.Drawing.Color.PaleGoldenrod">
1280       <summary>Gets a system-defined color that has an ARGB value of #FFEEE8AA.</summary>
1281       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1282     </member>
1283     <member name="P:System.Drawing.Color.PaleGreen">
1284       <summary>Gets a system-defined color that has an ARGB value of #FF98FB98.</summary>
1285       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1286     </member>
1287     <member name="P:System.Drawing.Color.PaleTurquoise">
1288       <summary>Gets a system-defined color that has an ARGB value of #FFAFEEEE.</summary>
1289       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1290     </member>
1291     <member name="P:System.Drawing.Color.PaleVioletRed">
1292       <summary>Gets a system-defined color that has an ARGB value of #FFDB7093.</summary>
1293       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1294     </member>
1295     <member name="P:System.Drawing.Color.PapayaWhip">
1296       <summary>Gets a system-defined color that has an ARGB value of #FFFFEFD5.</summary>
1297       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1298     </member>
1299     <member name="P:System.Drawing.Color.PeachPuff">
1300       <summary>Gets a system-defined color that has an ARGB value of #FFFFDAB9.</summary>
1301       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1302     </member>
1303     <member name="P:System.Drawing.Color.Peru">
1304       <summary>Gets a system-defined color that has an ARGB value of #FFCD853F.</summary>
1305       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1306     </member>
1307     <member name="P:System.Drawing.Color.Pink">
1308       <summary>Gets a system-defined color that has an ARGB value of #FFFFC0CB.</summary>
1309       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1310     </member>
1311     <member name="P:System.Drawing.Color.Plum">
1312       <summary>Gets a system-defined color that has an ARGB value of #FFDDA0DD.</summary>
1313       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1314     </member>
1315     <member name="P:System.Drawing.Color.PowderBlue">
1316       <summary>Gets a system-defined color that has an ARGB value of #FFB0E0E6.</summary>
1317       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1318     </member>
1319     <member name="P:System.Drawing.Color.Purple">
1320       <summary>Gets a system-defined color that has an ARGB value of #FF800080.</summary>
1321       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1322     </member>
1323     <member name="P:System.Drawing.Color.R">
1324       <summary>Gets the red component value of this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1325       <returns>The red component value of this <see cref="T:System.Drawing.Color"></see>.</returns>
1326     </member>
1327     <member name="P:System.Drawing.Color.Red">
1328       <summary>Gets a system-defined color that has an ARGB value of #FFFF0000.</summary>
1329       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1330     </member>
1331     <member name="P:System.Drawing.Color.RosyBrown">
1332       <summary>Gets a system-defined color that has an ARGB value of #FFBC8F8F.</summary>
1333       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1334     </member>
1335     <member name="P:System.Drawing.Color.RoyalBlue">
1336       <summary>Gets a system-defined color that has an ARGB value of #FF4169E1.</summary>
1337       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1338     </member>
1339     <member name="P:System.Drawing.Color.SaddleBrown">
1340       <summary>Gets a system-defined color that has an ARGB value of #FF8B4513.</summary>
1341       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1342     </member>
1343     <member name="P:System.Drawing.Color.Salmon">
1344       <summary>Gets a system-defined color that has an ARGB value of #FFFA8072.</summary>
1345       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1346     </member>
1347     <member name="P:System.Drawing.Color.SandyBrown">
1348       <summary>Gets a system-defined color that has an ARGB value of #FFF4A460.</summary>
1349       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1350     </member>
1351     <member name="P:System.Drawing.Color.SeaGreen">
1352       <summary>Gets a system-defined color that has an ARGB value of #FF2E8B57.</summary>
1353       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1354     </member>
1355     <member name="P:System.Drawing.Color.SeaShell">
1356       <summary>Gets a system-defined color that has an ARGB value of #FFFFF5EE.</summary>
1357       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1358     </member>
1359     <member name="P:System.Drawing.Color.Sienna">
1360       <summary>Gets a system-defined color that has an ARGB value of #FFA0522D.</summary>
1361       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1362     </member>
1363     <member name="P:System.Drawing.Color.Silver">
1364       <summary>Gets a system-defined color that has an ARGB value of #FFC0C0C0.</summary>
1365       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1366     </member>
1367     <member name="P:System.Drawing.Color.SkyBlue">
1368       <summary>Gets a system-defined color that has an ARGB value of #FF87CEEB.</summary>
1369       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1370     </member>
1371     <member name="P:System.Drawing.Color.SlateBlue">
1372       <summary>Gets a system-defined color that has an ARGB value of #FF6A5ACD.</summary>
1373       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1374     </member>
1375     <member name="P:System.Drawing.Color.SlateGray">
1376       <summary>Gets a system-defined color that has an ARGB value of #FF708090.</summary>
1377       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1378     </member>
1379     <member name="P:System.Drawing.Color.Snow">
1380       <summary>Gets a system-defined color that has an ARGB value of #FFFFFAFA.</summary>
1381       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1382     </member>
1383     <member name="P:System.Drawing.Color.SpringGreen">
1384       <summary>Gets a system-defined color that has an ARGB value of #FF00FF7F.</summary>
1385       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1386     </member>
1387     <member name="P:System.Drawing.Color.SteelBlue">
1388       <summary>Gets a system-defined color that has an ARGB value of #FF4682B4.</summary>
1389       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1390     </member>
1391     <member name="P:System.Drawing.Color.Tan">
1392       <summary>Gets a system-defined color that has an ARGB value of #FFD2B48C.</summary>
1393       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1394     </member>
1395     <member name="P:System.Drawing.Color.Teal">
1396       <summary>Gets a system-defined color that has an ARGB value of #FF008080.</summary>
1397       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1398     </member>
1399     <member name="P:System.Drawing.Color.Thistle">
1400       <summary>Gets a system-defined color that has an ARGB value of #FFD8BFD8.</summary>
1401       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1402     </member>
1403     <member name="M:System.Drawing.Color.ToArgb">
1404       <summary>Gets the 32-bit ARGB value of this <see cref="T:System.Drawing.Color"></see> structure.</summary>
1405       <returns>The 32-bit ARGB value of this <see cref="T:System.Drawing.Color"></see>.</returns>
1406     </member>
1407     <member name="P:System.Drawing.Color.Tomato">
1408       <summary>Gets a system-defined color that has an ARGB value of #FFFF6347.</summary>
1409       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1410     </member>
1411     <member name="M:System.Drawing.Color.ToString">
1412       <summary>Converts this <see cref="T:System.Drawing.Color"></see> structure to a human-readable string.</summary>
1413       <returns>A string that is the name of this <see cref="T:System.Drawing.Color"></see>, if the <see cref="T:System.Drawing.Color"></see> is created from a predefined color by using either the <see cref="M:System.Drawing.Color.FromName(System.String)"></see> method or the <see cref="M:System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor)"></see> method; otherwise, a string that consists of the ARGB component names and their values.</returns>
1414     </member>
1415     <member name="P:System.Drawing.Color.Transparent">
1416       <summary>Gets a system-defined color.</summary>
1417       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1418     </member>
1419     <member name="P:System.Drawing.Color.Turquoise">
1420       <summary>Gets a system-defined color that has an ARGB value of #FF40E0D0.</summary>
1421       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1422     </member>
1423     <member name="P:System.Drawing.Color.Violet">
1424       <summary>Gets a system-defined color that has an ARGB value of #FFEE82EE.</summary>
1425       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1426     </member>
1427     <member name="P:System.Drawing.Color.Wheat">
1428       <summary>Gets a system-defined color that has an ARGB value of #FFF5DEB3.</summary>
1429       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1430     </member>
1431     <member name="P:System.Drawing.Color.White">
1432       <summary>Gets a system-defined color that has an ARGB value of #FFFFFFFF.</summary>
1433       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1434     </member>
1435     <member name="P:System.Drawing.Color.WhiteSmoke">
1436       <summary>Gets a system-defined color that has an ARGB value of #FFF5F5F5.</summary>
1437       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1438     </member>
1439     <member name="P:System.Drawing.Color.Yellow">
1440       <summary>Gets a system-defined color that has an ARGB value of #FFFFFF00.</summary>
1441       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1442     </member>
1443     <member name="P:System.Drawing.Color.YellowGreen">
1444       <summary>Gets a system-defined color that has an ARGB value of #FF9ACD32.</summary>
1445       <returns>A <see cref="T:System.Drawing.Color"></see> representing a system-defined color.</returns>
1446     </member>
1447   </members>
1448 </doc></span>