[jit] Enable partial generic sharing when not using AOT as an experiment.
[mono.git] / mcs / class / Managed.Windows.Forms / Documentation / en / System.Windows.Forms / DataGridView.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="DataGridView" FullName="System.Windows.Forms.DataGridView">
3   <TypeSignature Language="C#" Value="public class DataGridView : System.Windows.Forms.Control, System.ComponentModel.ISupportInitialize" />
4   <AssemblyInfo>
5     <AssemblyName>System.Windows.Forms</AssemblyName>
6     <AssemblyVersion>2.0.0.0</AssemblyVersion>
7   </AssemblyInfo>
8   <Base>
9     <BaseTypeName>System.Windows.Forms.Control</BaseTypeName>
10   </Base>
11   <Interfaces>
12     <Interface>
13       <InterfaceName>System.ComponentModel.ISupportInitialize</InterfaceName>
14     </Interface>
15   </Interfaces>
16   <Attributes>
17     <Attribute>
18       <AttributeName>System.Windows.Forms.Docking(System.Windows.Forms.DockingBehavior.Ask)</AttributeName>
19     </Attribute>
20     <Attribute>
21       <AttributeName>System.ComponentModel.DefaultEvent("CellContentClick")</AttributeName>
22     </Attribute>
23     <Attribute>
24       <AttributeName>System.ComponentModel.ComplexBindingProperties("DataSource", "DataMember")</AttributeName>
25     </Attribute>
26     <Attribute>
27       <AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.DataGridViewComponentEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.ComponentModel.ComponentEditor))</AttributeName>
28     </Attribute>
29     <Attribute>
30       <AttributeName>System.ComponentModel.Designer("System.Windows.Forms.Design.DataGridViewDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")</AttributeName>
31     </Attribute>
32     <Attribute>
33       <AttributeName>System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)</AttributeName>
34     </Attribute>
35     <Attribute>
36       <AttributeName>System.Runtime.InteropServices.ComVisible(true)</AttributeName>
37     </Attribute>
38   </Attributes>
39   <Docs>
40     <since version=".NET 2.0" />
41     <remarks>
42       <attribution license="cc4" from="Microsoft" modified="false" />
43       <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control provides a customizable table for displaying data. The <see cref="T:System.Windows.Forms.DataGridView" /> class allows customization of cells, rows, columns, and borders through the use of properties such as <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridView.CellBorderStyle" />, and <see cref="P:System.Windows.Forms.DataGridView.GridColor" />. For more information, see <format type="text/html"><a href="b9b90836-1f56-4aa9-8db8-edc78fe830e8">Basic Formatting and Styling in the Windows Forms DataGridView Control</a></format>.</para>
44       <para>You can use a <see cref="T:System.Windows.Forms.DataGridView" /> control to display data with or without an underlying data source. Without specifying a data source, you can create columns and rows that contain data and add them directly to the <see cref="T:System.Windows.Forms.DataGridView" /> using the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> and <see cref="P:System.Windows.Forms.DataGridView.Columns" /> properties. You can also use the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection to access <see cref="T:System.Windows.Forms.DataGridViewRow" /> objects and the <see cref="P:System.Windows.Forms.DataGridViewRow.Cells" /> property to read or write cell values directly. The <see cref="P:System.Windows.Forms.DataGridView.Item(System.Int32,System.Int32)" /> indexer also provides direct access to cells. </para>
45       <para>As an alternative to populating the control manually, you can set the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> and <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> properties to bind the <see cref="T:System.Windows.Forms.DataGridView" /> to a data source and automatically populate it with data. For more information, see <format type="text/html"><a href="b170b52a-2ebd-4948-ac2f-e52d494cebb2">Displaying Data in the Windows Forms DataGridView Control</a></format>.</para>
46       <para>When working with very large amounts of data, you can set the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property to true to display a subset of the available data. Virtual mode requires the implementation of a data cache from which the <see cref="T:System.Windows.Forms.DataGridView" /> control is populated. For more information, see <format type="text/html"><a href="9755a030-3f3f-4705-a661-ba5a48a81875">Data Display Modes in the Windows Forms DataGridView Control</a></format>.</para>
47       <para>For additional information about the features available in the <see cref="T:System.Windows.Forms.DataGridView" /> control, see <format type="text/html"><a href="dbee73f2-bba6-4874-9389-cd21d44309be">DataGridView Control (Windows Forms)</a></format>. The following table provides direct links to common tasks.</para>
48       <para>
49         <dynamicLink>
50           <keyword>dgv_tasks</keyword>
51         </dynamicLink>
52       </para>
53       <para>Although the <see cref="T:System.Windows.Forms.DataGridView" /> control replaces and adds functionality to the <see cref="T:System.Windows.Forms.DataGrid" /> control of previous versions, the <see cref="T:System.Windows.Forms.DataGrid" /> control is retained for both backward compatibility and future use if you choose. For more information, see <format type="text/html"><a href="d412c786-140e-4210-8a56-a68467530a55">Differences Between the Windows Forms DataGridView and DataGrid Controls</a></format>.</para>
54       <block subset="none" type="note">
55         <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control inherits both the <see cref="P:System.Windows.Forms.Control.ContextMenu" /> and <see cref="P:System.Windows.Forms.Control.ContextMenuStrip" /> properties from <see cref="T:System.Windows.Forms.Control" />, but supports only the <see cref="P:System.Windows.Forms.Control.ContextMenuStrip" /> property. Using the <see cref="P:System.Windows.Forms.Control.ContextMenu" /> property with the <see cref="T:System.Windows.Forms.DataGridView" /> control has no effect. </para>
56       </block>
57     </remarks>
58     <summary>
59       <attribution license="cc4" from="Microsoft" modified="false" />
60       <para>Displays data in a customizable grid.</para>
61     </summary>
62   </Docs>
63   <Members>
64     <Member MemberName=".ctor">
65       <MemberSignature Language="C#" Value="public DataGridView ();" />
66       <MemberType>Constructor</MemberType>
67       <Parameters />
68       <Docs>
69         <since version=".NET 2.0" />
70         <remarks>
71           <attribution license="cc4" from="Microsoft" modified="false" />
72           <para>The following table shows initial property values for an instance of the <see cref="T:System.Windows.Forms.DataGridView" /> class.</para>
73           <list type="table">
74             <listheader>
75               <item>
76                 <term>
77                   <para>Property </para>
78                 </term>
79                 <description>
80                   <para>Initial Value </para>
81                 </description>
82               </item>
83             </listheader>
84             <item>
85               <term>
86                 <para>
87                   <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" />
88                 </para>
89               </term>
90               <description>
91                 <para>true</para>
92               </description>
93             </item>
94             <item>
95               <term>
96                 <para>
97                   <see cref="P:System.Windows.Forms.DataGridView.AllowUserToDeleteRows" />
98                 </para>
99               </term>
100               <description>
101                 <para>true</para>
102               </description>
103             </item>
104             <item>
105               <term>
106                 <para>
107                   <see cref="P:System.Windows.Forms.DataGridView.AllowUserToOrderColumns" />
108                 </para>
109               </term>
110               <description>
111                 <para>false</para>
112               </description>
113             </item>
114             <item>
115               <term>
116                 <para>
117                   <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeColumns" />
118                 </para>
119               </term>
120               <description>
121                 <para>true</para>
122               </description>
123             </item>
124             <item>
125               <term>
126                 <para>
127                   <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeRows" />
128                 </para>
129               </term>
130               <description>
131                 <para>true</para>
132               </description>
133             </item>
134             <item>
135               <term>
136                 <para>
137                   <see cref="P:System.Windows.Forms.DataGridView.AutoGenerateColumns" />
138                 </para>
139               </term>
140               <description>
141                 <para>true</para>
142               </description>
143             </item>
144             <item>
145               <term>
146                 <para>
147                   <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" />
148                 </para>
149               </term>
150               <description>
151                 <para>
152                   <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None" />
153                 </para>
154               </description>
155             </item>
156             <item>
157               <term>
158                 <para>
159                   <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" />
160                 </para>
161               </term>
162               <description>
163                 <para>
164                   <see cref="F:System.Windows.Forms.DataGridViewAutoSizeRowsMode.None" />
165                 </para>
166               </description>
167             </item>
168             <item>
169               <term>
170                 <para>
171                   <see cref="P:System.Windows.Forms.DataGridView.ClipboardCopyMode" />
172                 </para>
173               </term>
174               <description>
175                 <para>
176                   <see cref="F:System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText" />
177                 </para>
178               </description>
179             </item>
180             <item>
181               <term>
182                 <para>
183                   <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" />
184                 </para>
185               </term>
186               <description>
187                 <para>
188                   <see cref="F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing" />
189                 </para>
190               </description>
191             </item>
192             <item>
193               <term>
194                 <para>
195                   <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" />
196                 </para>
197               </term>
198               <description>
199                 <para>true</para>
200               </description>
201             </item>
202             <item>
203               <term>
204                 <para>
205                   <see cref="P:System.Windows.Forms.DataGridView.EditMode" />
206                 </para>
207               </term>
208               <description>
209                 <para>
210                   <see cref="F:System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2" />
211                 </para>
212               </description>
213             </item>
214             <item>
215               <term>
216                 <para>
217                   <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" />
218                 </para>
219               </term>
220               <description>
221                 <para>true</para>
222               </description>
223             </item>
224             <item>
225               <term>
226                 <para>
227                   <see cref="P:System.Windows.Forms.DataGridView.ReadOnly" />
228                 </para>
229               </term>
230               <description>
231                 <para>false</para>
232               </description>
233             </item>
234             <item>
235               <term>
236                 <para>
237                   <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" />
238                 </para>
239               </term>
240               <description>
241                 <para>true</para>
242               </description>
243             </item>
244             <item>
245               <term>
246                 <para>
247                   <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" />
248                 </para>
249               </term>
250               <description>
251                 <para>
252                   <see cref="F:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing" />
253                 </para>
254               </description>
255             </item>
256             <item>
257               <term>
258                 <para>
259                   <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" />
260                 </para>
261               </term>
262               <description>
263                 <para>
264                   <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect" />
265                 </para>
266               </description>
267             </item>
268           </list>
269         </remarks>
270         <summary>
271           <attribution license="cc4" from="Microsoft" modified="false" />
272           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridView" /> class.</para>
273         </summary>
274       </Docs>
275       <AssemblyInfo>
276         <AssemblyVersion>2.0.0.0</AssemblyVersion>
277       </AssemblyInfo>
278     </Member>
279     <Member MemberName="AccessibilityNotifyCurrentCellChanged">
280       <MemberSignature Language="C#" Value="protected virtual void AccessibilityNotifyCurrentCellChanged (System.Drawing.Point cellAddress);" />
281       <MemberType>Method</MemberType>
282       <AssemblyInfo>
283         <AssemblyVersion>2.0.0.0</AssemblyVersion>
284       </AssemblyInfo>
285       <ReturnValue>
286         <ReturnType>System.Void</ReturnType>
287       </ReturnValue>
288       <Parameters>
289         <Parameter Name="cellAddress" Type="System.Drawing.Point" />
290       </Parameters>
291       <Docs>
292         <remarks>
293           <attribution license="cc4" from="Microsoft" modified="false" />
294           <para>This method converts the specified row and column indexes into <paramref name="objectID" /> and <paramref name="childID" /> parameters and calls the <see cref="M:System.Windows.Forms.Control.AccessibilityNotifyClients(System.Windows.Forms.AccessibleEvents,System.Int32,System.Int32)" /> method overload twice using the <see cref="F:System.Windows.Forms.AccessibleEvents.Focus" /> and <see cref="F:System.Windows.Forms.AccessibleEvents.Selection" /> values of the <see cref="T:System.Windows.Forms.AccessibleEvents" /> enumeration. The <paramref name="objectID" /> and <paramref name="childID" /> are determined by numbering only the visible rows and columns in their display order, counting the row or column headers if they are visible, and starting with 1. For example, if column headers are visible, the <paramref name="objectID" /> for the first visible nonheader row is 2. </para>
295         </remarks>
296         <summary>
297           <attribution license="cc4" from="Microsoft" modified="false" />
298           <para>Notifies the accessible client applications when a new cell becomes the current cell. </para>
299         </summary>
300         <param name="cellAddress">
301           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Point" /> indicating the row and column indexes of the new current cell.</param>
302       </Docs>
303     </Member>
304     <Member MemberName="AdjustColumnHeaderBorderStyle">
305       <MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataGridViewAdvancedBorderStyle AdjustColumnHeaderBorderStyle (System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStyleInput, System.Windows.Forms.DataGridViewAdvancedBorderStyle dataGridViewAdvancedBorderStylePlaceholder, bool isFirstDisplayedColumn, bool isLastVisibleColumn);" />
306       <MemberType>Method</MemberType>
307       <ReturnValue>
308         <ReturnType>System.Windows.Forms.DataGridViewAdvancedBorderStyle</ReturnType>
309       </ReturnValue>
310       <Parameters>
311         <Parameter Name="dataGridViewAdvancedBorderStyleInput" Type="System.Windows.Forms.DataGridViewAdvancedBorderStyle" />
312         <Parameter Name="dataGridViewAdvancedBorderStylePlaceholder" Type="System.Windows.Forms.DataGridViewAdvancedBorderStyle" />
313         <Parameter Name="isFirstDisplayedColumn" Type="System.Boolean" />
314         <Parameter Name="isLastVisibleColumn" Type="System.Boolean" />
315       </Parameters>
316       <Docs>
317         <since version=".NET 2.0" />
318         <remarks>
319           <attribution license="cc4" from="Microsoft" modified="false" />
320           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control internally calls the <see cref="M:System.Windows.Forms.DataGridView.AdjustColumnHeaderBorderStyle(System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Windows.Forms.DataGridViewAdvancedBorderStyle,System.Boolean,System.Boolean)" /> method to determine the appearance of the borders for the column header cells. The <see cref="T:System.Windows.Forms.DataGridView" /> control typically uses the value of the <see cref="P:System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle" /> property for the <paramref name="dataGridViewAdvancedBorderStyleInput" /> parameter. </para>
321         </remarks>
322         <summary>
323           <attribution license="cc4" from="Microsoft" modified="false" />
324           <para>Adjusts the <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> for a column header cell of a <see cref="T:System.Windows.Forms.DataGridView" /> that is currently being painted.</para>
325         </summary>
326         <returns>
327           <attribution license="cc4" from="Microsoft" modified="false" />
328           <para>A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that represents the border style for the current column header.</para>
329         </returns>
330         <param name="dataGridViewAdvancedBorderStyleInput">
331           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that that represents the column header border style to modify.</param>
332         <param name="dataGridViewAdvancedBorderStylePlaceholder">
333           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAdvancedBorderStyle" /> that is used to store intermediate changes to the column header border style.</param>
334         <param name="isFirstDisplayedColumn">
335           <attribution license="cc4" from="Microsoft" modified="false" />true to indicate that the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is currently being painted is in the first column displayed on the <see cref="T:System.Windows.Forms.DataGridView" />; otherwise, false.</param>
336         <param name="isLastVisibleColumn">
337           <attribution license="cc4" from="Microsoft" modified="false" />true to indicate that the <see cref="T:System.Windows.Forms.DataGridViewCell" /> that is currently being painted is in the last column in the <see cref="T:System.Windows.Forms.DataGridView" /> that has the <see cref="P:System.Windows.Forms.DataGridViewColumn.Visible" /> property set to true; otherwise, false.</param>
338       </Docs>
339       <AssemblyInfo>
340         <AssemblyVersion>2.0.0.0</AssemblyVersion>
341       </AssemblyInfo>
342       <Attributes>
343         <Attribute>
344           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
345         </Attribute>
346       </Attributes>
347     </Member>
348     <Member MemberName="AdjustedTopLeftHeaderBorderStyle">
349       <MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataGridViewAdvancedBorderStyle AdjustedTopLeftHeaderBorderStyle { get; }" />
350       <MemberType>Property</MemberType>
351       <Attributes>
352         <Attribute>
353           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
354         </Attribute>
355         <Attribute>
356           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
357         </Attribute>
358         <Attribute>
359           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
360         </Attribute>
361       </Attributes>
362       <ReturnValue>
363         <ReturnType>System.Windows.Forms.DataGridViewAdvancedBorderStyle</ReturnType>
364       </ReturnValue>
365       <Docs>
366         <value>To be added.</value>
367         <since version=".NET 2.0" />
368         <remarks>
369           <attribution license="cc4" from="Microsoft" modified="false" />
370           <para>The upper-left cell is the cell that is shared by the column header row and the row header column. The <see cref="T:System.Windows.Forms.DataGridView" /> gets the value of this property while painting the upper-left cell.</para>
371         </remarks>
372         <summary>
373           <attribution license="cc4" from="Microsoft" modified="false" />
374           <para>Gets the border style for the upper-left cell in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
375         </summary>
376       </Docs>
377       <AssemblyInfo>
378         <AssemblyVersion>2.0.0.0</AssemblyVersion>
379       </AssemblyInfo>
380     </Member>
381     <Member MemberName="AdvancedCellBorderStyle">
382       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewAdvancedBorderStyle AdvancedCellBorderStyle { get; }" />
383       <MemberType>Property</MemberType>
384       <Attributes>
385         <Attribute>
386           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
387         </Attribute>
388         <Attribute>
389           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
390         </Attribute>
391       </Attributes>
392       <ReturnValue>
393         <ReturnType>System.Windows.Forms.DataGridViewAdvancedBorderStyle</ReturnType>
394       </ReturnValue>
395       <Docs>
396         <value>To be added.</value>
397         <since version=".NET 2.0" />
398         <remarks>
399           <attribution license="cc4" from="Microsoft" modified="false" />
400           <para>Use the <see cref="P:System.Windows.Forms.DataGridView.AdvancedCellBorderStyle" /> property to customize the appearance of cells' borders. To change the style of the borders using the built-in styles, use the <see cref="P:System.Windows.Forms.DataGridView.CellBorderStyle" /> property.</para>
401         </remarks>
402         <summary>
403           <attribution license="cc4" from="Microsoft" modified="false" />
404           <para>Gets the border style of the cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
405         </summary>
406       </Docs>
407       <AssemblyInfo>
408         <AssemblyVersion>2.0.0.0</AssemblyVersion>
409       </AssemblyInfo>
410     </Member>
411     <Member MemberName="AdvancedColumnHeadersBorderStyle">
412       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewAdvancedBorderStyle AdvancedColumnHeadersBorderStyle { get; }" />
413       <MemberType>Property</MemberType>
414       <Attributes>
415         <Attribute>
416           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
417         </Attribute>
418         <Attribute>
419           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
420         </Attribute>
421       </Attributes>
422       <ReturnValue>
423         <ReturnType>System.Windows.Forms.DataGridViewAdvancedBorderStyle</ReturnType>
424       </ReturnValue>
425       <Docs>
426         <value>To be added.</value>
427         <since version=".NET 2.0" />
428         <remarks>
429           <attribution license="cc4" from="Microsoft" modified="false" />
430           <para>Use the <see cref="P:System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle" /> property to customize the appearance of column header cells' borders. To change the style of the borders using the built-in styles, use the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle" /> property.</para>
431         </remarks>
432         <summary>
433           <attribution license="cc4" from="Microsoft" modified="false" />
434           <para>Gets the border style of the column header cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
435         </summary>
436       </Docs>
437       <AssemblyInfo>
438         <AssemblyVersion>2.0.0.0</AssemblyVersion>
439       </AssemblyInfo>
440     </Member>
441     <Member MemberName="AdvancedRowHeadersBorderStyle">
442       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewAdvancedBorderStyle AdvancedRowHeadersBorderStyle { get; }" />
443       <MemberType>Property</MemberType>
444       <Attributes>
445         <Attribute>
446           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
447         </Attribute>
448         <Attribute>
449           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
450         </Attribute>
451       </Attributes>
452       <ReturnValue>
453         <ReturnType>System.Windows.Forms.DataGridViewAdvancedBorderStyle</ReturnType>
454       </ReturnValue>
455       <Docs>
456         <value>To be added.</value>
457         <since version=".NET 2.0" />
458         <remarks>
459           <attribution license="cc4" from="Microsoft" modified="false" />
460           <para>Use the <see cref="P:System.Windows.Forms.DataGridView.AdvancedRowHeadersBorderStyle" /> property to customize the appearance of row header cells' borders in a derived <see cref="T:System.Windows.Forms.DataGridView" /> control. To change the style of the borders using the built-in styles, use the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle" /> property.</para>
461         </remarks>
462         <summary>
463           <attribution license="cc4" from="Microsoft" modified="false" />
464           <para>Gets the border style of the row header cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
465         </summary>
466       </Docs>
467       <AssemblyInfo>
468         <AssemblyVersion>2.0.0.0</AssemblyVersion>
469       </AssemblyInfo>
470     </Member>
471     <Member MemberName="AllowUserToAddRows">
472       <MemberSignature Language="C#" Value="public bool AllowUserToAddRows { set; get; }" />
473       <MemberType>Property</MemberType>
474       <Attributes>
475         <Attribute>
476           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
477         </Attribute>
478       </Attributes>
479       <ReturnValue>
480         <ReturnType>System.Boolean</ReturnType>
481       </ReturnValue>
482       <Docs>
483         <value>To be added.</value>
484         <since version=".NET 2.0" />
485         <remarks>
486           <attribution license="cc4" from="Microsoft" modified="false" />
487           <para>If the <see cref="T:System.Windows.Forms.DataGridView" /> is bound to data, the user is allowed to add rows if both this property and the data source's <see cref="P:System.ComponentModel.IBindingList.AllowNew" /> property are set to true.</para>
488         </remarks>
489         <summary>
490           <attribution license="cc4" from="Microsoft" modified="false" />
491           <para>Gets or sets a value indicating whether the option to add rows is displayed to the user.</para>
492         </summary>
493       </Docs>
494       <AssemblyInfo>
495         <AssemblyVersion>2.0.0.0</AssemblyVersion>
496       </AssemblyInfo>
497     </Member>
498     <Member MemberName="AllowUserToAddRowsChanged">
499       <MemberSignature Language="C#" Value="public event EventHandler AllowUserToAddRowsChanged;" />
500       <MemberType>Event</MemberType>
501       <ReturnValue>
502         <ReturnType>System.EventHandler</ReturnType>
503       </ReturnValue>
504       <Docs>
505         <since version=".NET 2.0" />
506         <remarks>
507           <attribution license="cc4" from="Microsoft" modified="false" />
508           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>. </para>
509         </remarks>
510         <summary>
511           <attribution license="cc4" from="Microsoft" modified="false" />
512           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> property changes.</para>
513         </summary>
514       </Docs>
515       <AssemblyInfo>
516         <AssemblyVersion>2.0.0.0</AssemblyVersion>
517       </AssemblyInfo>
518     </Member>
519     <Member MemberName="AllowUserToDeleteRows">
520       <MemberSignature Language="C#" Value="public bool AllowUserToDeleteRows { set; get; }" />
521       <MemberType>Property</MemberType>
522       <Attributes>
523         <Attribute>
524           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
525         </Attribute>
526       </Attributes>
527       <ReturnValue>
528         <ReturnType>System.Boolean</ReturnType>
529       </ReturnValue>
530       <Docs>
531         <value>To be added.</value>
532         <since version=".NET 2.0" />
533         <remarks>
534           <attribution license="cc4" from="Microsoft" modified="false" />
535           <para>If the <see cref="T:System.Windows.Forms.DataGridView" /> is bound to data, the user is allowed to delete rows if both this property and the <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> property are set to true.</para>
536         </remarks>
537         <summary>
538           <attribution license="cc4" from="Microsoft" modified="false" />
539           <para>Gets or sets a value indicating whether the user is allowed to delete rows from the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
540         </summary>
541       </Docs>
542       <AssemblyInfo>
543         <AssemblyVersion>2.0.0.0</AssemblyVersion>
544       </AssemblyInfo>
545     </Member>
546     <Member MemberName="AllowUserToDeleteRowsChanged">
547       <MemberSignature Language="C#" Value="public event EventHandler AllowUserToDeleteRowsChanged;" />
548       <MemberType>Event</MemberType>
549       <ReturnValue>
550         <ReturnType>System.EventHandler</ReturnType>
551       </ReturnValue>
552       <Docs>
553         <since version=".NET 2.0" />
554         <remarks>
555           <attribution license="cc4" from="Microsoft" modified="false" />
556           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
557         </remarks>
558         <summary>
559           <attribution license="cc4" from="Microsoft" modified="false" />
560           <para>Occurs when the value of the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged" /> property changes.</para>
561         </summary>
562       </Docs>
563       <AssemblyInfo>
564         <AssemblyVersion>2.0.0.0</AssemblyVersion>
565       </AssemblyInfo>
566     </Member>
567     <Member MemberName="AllowUserToOrderColumns">
568       <MemberSignature Language="C#" Value="public bool AllowUserToOrderColumns { set; get; }" />
569       <MemberType>Property</MemberType>
570       <Attributes>
571         <Attribute>
572           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
573         </Attribute>
574       </Attributes>
575       <ReturnValue>
576         <ReturnType>System.Boolean</ReturnType>
577       </ReturnValue>
578       <Docs>
579         <value>To be added.</value>
580         <since version=".NET 2.0" />
581         <remarks>
582           <attribution license="cc4" from="Microsoft" modified="false" />
583           <para>When column repositioning is enabled, users can drag a column header to a new position. Note that frozen and unfrozen columns form two separate groups; users can reposition columns within a group, but cannot move a column from one group to the other.</para>
584           <block subset="none" type="note">
585             <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control does not support double buffering. If <see cref="P:System.Windows.Forms.Control.DoubleBuffered" /> is set to true in a derived <see cref="T:System.Windows.Forms.DataGridView" /> control, users will not receive visual feedback when resizing rows, columns, or headers or when reordering columns.</para>
586           </block>
587         </remarks>
588         <summary>
589           <attribution license="cc4" from="Microsoft" modified="false" />
590           <para>Gets or sets a value indicating whether manual column repositioning is enabled.</para>
591         </summary>
592       </Docs>
593       <AssemblyInfo>
594         <AssemblyVersion>2.0.0.0</AssemblyVersion>
595       </AssemblyInfo>
596     </Member>
597     <Member MemberName="AllowUserToOrderColumnsChanged">
598       <MemberSignature Language="C#" Value="public event EventHandler AllowUserToOrderColumnsChanged;" />
599       <MemberType>Event</MemberType>
600       <ReturnValue>
601         <ReturnType>System.EventHandler</ReturnType>
602       </ReturnValue>
603       <Docs>
604         <since version=".NET 2.0" />
605         <remarks>
606           <attribution license="cc4" from="Microsoft" modified="false" />
607           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>. </para>
608         </remarks>
609         <summary>
610           <attribution license="cc4" from="Microsoft" modified="false" />
611           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToOrderColumns" /> property changes.</para>
612         </summary>
613       </Docs>
614       <AssemblyInfo>
615         <AssemblyVersion>2.0.0.0</AssemblyVersion>
616       </AssemblyInfo>
617     </Member>
618     <Member MemberName="AllowUserToResizeColumns">
619       <MemberSignature Language="C#" Value="public bool AllowUserToResizeColumns { set; get; }" />
620       <MemberType>Property</MemberType>
621       <Attributes>
622         <Attribute>
623           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
624         </Attribute>
625       </Attributes>
626       <ReturnValue>
627         <ReturnType>System.Boolean</ReturnType>
628       </ReturnValue>
629       <Docs>
630         <value>To be added.</value>
631         <since version=".NET 2.0" />
632         <remarks>
633           <attribution license="cc4" from="Microsoft" modified="false" />
634           <para>Use this property to prevent users from manually changing column widths. This is useful, for example, with display-only columns where data is loaded once and columns are resized at that time. </para>
635           <para>For more information about user resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
636           <block subset="none" type="note">
637             <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control does not support double buffering. If <see cref="P:System.Windows.Forms.Control.DoubleBuffered" /> is set to true in a derived <see cref="T:System.Windows.Forms.DataGridView" /> control, users will not receive visual feedback when resizing rows, columns, or headers or when reordering columns.</para>
638           </block>
639         </remarks>
640         <summary>
641           <attribution license="cc4" from="Microsoft" modified="false" />
642           <para>Gets or sets a value indicating whether users can resize columns.</para>
643         </summary>
644       </Docs>
645       <AssemblyInfo>
646         <AssemblyVersion>2.0.0.0</AssemblyVersion>
647       </AssemblyInfo>
648     </Member>
649     <Member MemberName="AllowUserToResizeColumnsChanged">
650       <MemberSignature Language="C#" Value="public event EventHandler AllowUserToResizeColumnsChanged;" />
651       <MemberType>Event</MemberType>
652       <ReturnValue>
653         <ReturnType>System.EventHandler</ReturnType>
654       </ReturnValue>
655       <Docs>
656         <since version=".NET 2.0" />
657         <remarks>
658           <attribution license="cc4" from="Microsoft" modified="false" />
659           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
660         </remarks>
661         <summary>
662           <attribution license="cc4" from="Microsoft" modified="false" />
663           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeColumns" /> property changes.</para>
664         </summary>
665       </Docs>
666       <AssemblyInfo>
667         <AssemblyVersion>2.0.0.0</AssemblyVersion>
668       </AssemblyInfo>
669     </Member>
670     <Member MemberName="AllowUserToResizeRows">
671       <MemberSignature Language="C#" Value="public bool AllowUserToResizeRows { set; get; }" />
672       <MemberType>Property</MemberType>
673       <Attributes>
674         <Attribute>
675           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
676         </Attribute>
677       </Attributes>
678       <ReturnValue>
679         <ReturnType>System.Boolean</ReturnType>
680       </ReturnValue>
681       <Docs>
682         <value>To be added.</value>
683         <since version=".NET 2.0" />
684         <remarks>
685           <attribution license="cc4" from="Microsoft" modified="false" />
686           <para>Use this property to prevent users from manually changing row heights. This is useful, for example, with display-only controls where data is loaded once and rows are resized at that time. </para>
687           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
688           <para>For more information about user resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
689           <block subset="none" type="note">
690             <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control does not support double buffering. If <see cref="P:System.Windows.Forms.Control.DoubleBuffered" /> is set to true in a derived <see cref="T:System.Windows.Forms.DataGridView" /> control, users will not receive visual feedback when resizing rows, columns, or headers or when reordering columns.</para>
691           </block>
692         </remarks>
693         <summary>
694           <attribution license="cc4" from="Microsoft" modified="false" />
695           <para>Gets or sets a value indicating whether users can resize rows.</para>
696         </summary>
697       </Docs>
698       <AssemblyInfo>
699         <AssemblyVersion>2.0.0.0</AssemblyVersion>
700       </AssemblyInfo>
701     </Member>
702     <Member MemberName="AllowUserToResizeRowsChanged">
703       <MemberSignature Language="C#" Value="public event EventHandler AllowUserToResizeRowsChanged;" />
704       <MemberType>Event</MemberType>
705       <ReturnValue>
706         <ReturnType>System.EventHandler</ReturnType>
707       </ReturnValue>
708       <Docs>
709         <since version=".NET 2.0" />
710         <remarks>
711           <attribution license="cc4" from="Microsoft" modified="false" />
712           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
713         </remarks>
714         <summary>
715           <attribution license="cc4" from="Microsoft" modified="false" />
716           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AllowUserToResizeRows" /> property changes.</para>
717         </summary>
718       </Docs>
719       <AssemblyInfo>
720         <AssemblyVersion>2.0.0.0</AssemblyVersion>
721       </AssemblyInfo>
722     </Member>
723     <Member MemberName="AlternatingRowsDefaultCellStyle">
724       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCellStyle AlternatingRowsDefaultCellStyle { set; get; }" />
725       <MemberType>Property</MemberType>
726       <ReturnValue>
727         <ReturnType>System.Windows.Forms.DataGridViewCellStyle</ReturnType>
728       </ReturnValue>
729       <Docs>
730         <value>To be added.</value>
731         <since version=".NET 2.0" />
732         <remarks>
733           <attribution license="cc4" from="Microsoft" modified="false" />
734           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control displays its cells using the styles indicated by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property, which inherits styles from other properties of type <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />. For cells in rows with odd index numbers, the styles specified through the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" /> property override the styles specified through the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle" />, and <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" />, and are overridden by the styles specified through the <see cref="P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle" /> and <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> properties. </para>
735           <para>For more information, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
736           <para>When getting this property, a <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with default values will be created if the property has not already been accessed. This can cause a performance impact when getting this property for many rows. Whenever possible, use a single <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to set this property for multiple rows. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
737         </remarks>
738         <summary>
739           <attribution license="cc4" from="Microsoft" modified="false" />
740           <para>Gets or sets the default cell style applied to odd-numbered rows of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
741         </summary>
742       </Docs>
743       <AssemblyInfo>
744         <AssemblyVersion>2.0.0.0</AssemblyVersion>
745       </AssemblyInfo>
746     </Member>
747     <Member MemberName="AlternatingRowsDefaultCellStyleChanged">
748       <MemberSignature Language="C#" Value="public event EventHandler AlternatingRowsDefaultCellStyleChanged;" />
749       <MemberType>Event</MemberType>
750       <ReturnValue>
751         <ReturnType>System.EventHandler</ReturnType>
752       </ReturnValue>
753       <Docs>
754         <since version=".NET 2.0" />
755         <remarks>
756           <attribution license="cc4" from="Microsoft" modified="false" />
757           <para>This event occurs when any property of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" /> property is set to a new value or when the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" /> property is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
758           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>. </para>
759         </remarks>
760         <summary>
761           <attribution license="cc4" from="Microsoft" modified="false" />
762           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" /> property changes.</para>
763         </summary>
764       </Docs>
765       <AssemblyInfo>
766         <AssemblyVersion>2.0.0.0</AssemblyVersion>
767       </AssemblyInfo>
768     </Member>
769     <Member MemberName="AreAllCellsSelected">
770       <MemberSignature Language="C#" Value="public bool AreAllCellsSelected (bool includeInvisibleCells);" />
771       <MemberType>Method</MemberType>
772       <ReturnValue>
773         <ReturnType>System.Boolean</ReturnType>
774       </ReturnValue>
775       <Parameters>
776         <Parameter Name="includeInvisibleCells" Type="System.Boolean" />
777       </Parameters>
778       <Docs>
779         <since version=".NET 2.0" />
780         <remarks>
781           <attribution license="cc4" from="Microsoft" modified="false" />
782           <para>The <see cref="P:System.Windows.Forms.DataGridView.SelectedCells" /> collection does not perform efficiently with large selections. To determine whether all the cells in the <see cref="T:System.Windows.Forms.DataGridView" /> have been selected before you access the contents of the <see cref="P:System.Windows.Forms.DataGridView.SelectedCells" /> collection, check the return value of the <see cref="M:System.Windows.Forms.DataGridView.AreAllCellsSelected(System.Boolean)" /> method. However, this method can cause rows to become unshared. For more information about <see cref="T:System.Windows.Forms.DataGridView" /> performance, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
783         </remarks>
784         <summary>
785           <attribution license="cc4" from="Microsoft" modified="false" />
786           <para>Returns a value indicating whether all the <see cref="T:System.Windows.Forms.DataGridView" /> cells are currently selected.</para>
787         </summary>
788         <returns>
789           <attribution license="cc4" from="Microsoft" modified="false" />
790           <para>true if all cells (or all visible cells) are selected or if there are no cells (or no visible cells); otherwise, false.</para>
791         </returns>
792         <param name="includeInvisibleCells">
793           <attribution license="cc4" from="Microsoft" modified="false" />true to include the rows and columns with <see cref="P:System.Windows.Forms.DataGridViewBand.Visible" /> property values of false; otherwise, false. </param>
794       </Docs>
795       <AssemblyInfo>
796         <AssemblyVersion>2.0.0.0</AssemblyVersion>
797       </AssemblyInfo>
798     </Member>
799     <Member MemberName="AutoGenerateColumns">
800       <MemberSignature Language="C#" Value="public bool AutoGenerateColumns { set; get; }" />
801       <MemberType>Property</MemberType>
802       <Attributes>
803         <Attribute>
804           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
805         </Attribute>
806         <Attribute>
807           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
808         </Attribute>
809         <Attribute>
810           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
811         </Attribute>
812       </Attributes>
813       <ReturnValue>
814         <ReturnType>System.Boolean</ReturnType>
815       </ReturnValue>
816       <Docs>
817         <value>To be added.</value>
818         <since version=".NET 2.0" />
819         <remarks>
820           <attribution license="cc4" from="Microsoft" modified="false" />
821           <para>Columns are automatically generated when this property is set to true and the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> or <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> properties are set or changed. Columns can also be automatically generated when the <see cref="P:System.Windows.Forms.DataGridView.AutoGenerateColumns" /> property is changed from false to true. If this property is true and the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> changes so there are columns that do not match the columns of the previous <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> value, data in the unmatched columns is discarded. This property is ignored if the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> or <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> properties are not set.</para>
822           <para>When <see cref="P:System.Windows.Forms.DataGridView.AutoGenerateColumns" /> is set to true, the <see cref="T:System.Windows.Forms.DataGridView" /> control generates one column for each public property of the objects in the data source. If the bound objects implement the <see cref="T:System.ComponentModel.ICustomTypeDescriptor" /> interface, the control generates one column for each property returned by the <see cref="M:System.ComponentModel.ICustomTypeDescriptor.GetProperties" /> method. Each column header will contain the value of the property name the column represents.</para>
823           <para>If you set the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property but set <see cref="P:System.Windows.Forms.DataGridView.AutoGenerateColumns" /> to false, you must add columns manually. You can bind each added column to the data source by setting the <see cref="P:System.Windows.Forms.DataGridViewColumn.DataPropertyName" /> property to the name of a property exposed by the bound objects. </para>
824           <block subset="none" type="note">
825             <para>Setting the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> in the Windows Forms Designer automatically sets the <see cref="P:System.Windows.Forms.DataGridView.AutoGenerateColumns" /> property to false and generates code to add and bind a column for each property in the data source. The code that is generated at design-time is equivalent to the manually added code shown in the following example. It is not the same as the auto-generation of columns at run-time that occurs when the <see cref="P:System.Windows.Forms.DataGridView.AutoGenerateColumns" /> property is set to true.</para>
826           </block>
827         </remarks>
828         <summary>
829           <attribution license="cc4" from="Microsoft" modified="false" />
830           <para>Gets or sets a value indicating whether columns are created automatically when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> or <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> properties are set.</para>
831         </summary>
832       </Docs>
833       <AssemblyInfo>
834         <AssemblyVersion>2.0.0.0</AssemblyVersion>
835       </AssemblyInfo>
836     </Member>
837     <Member MemberName="AutoGenerateColumnsChanged">
838       <MemberSignature Language="C#" Value="public event EventHandler AutoGenerateColumnsChanged;" />
839       <MemberType>Event</MemberType>
840       <Attributes>
841         <Attribute>
842           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
843         </Attribute>
844         <Attribute>
845           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
846         </Attribute>
847       </Attributes>
848       <ReturnValue>
849         <ReturnType>System.EventHandler</ReturnType>
850       </ReturnValue>
851       <Docs>
852         <since version=".NET 2.0" />
853         <remarks>
854           <attribution license="cc4" from="Microsoft" modified="false" />
855           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>. </para>
856         </remarks>
857         <summary>
858           <attribution license="cc4" from="Microsoft" modified="false" />
859           <para>Occurs when the value of the <see cref="E:System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged" /> property changes.</para>
860         </summary>
861       </Docs>
862       <AssemblyInfo>
863         <AssemblyVersion>2.0.0.0</AssemblyVersion>
864       </AssemblyInfo>
865     </Member>
866     <Member MemberName="AutoResizeColumn">
867       <MemberSignature Language="C#" Value="public void AutoResizeColumn (int columnIndex);" />
868       <MemberType>Method</MemberType>
869       <ReturnValue>
870         <ReturnType>System.Void</ReturnType>
871       </ReturnValue>
872       <Parameters>
873         <Parameter Name="columnIndex" Type="System.Int32" />
874       </Parameters>
875       <Docs>
876         <since version=".NET 2.0" />
877         <remarks>
878           <attribution license="cc4" from="Microsoft" modified="false" />
879           <para>This method is useful if you want to control when a column resizes. The column width is adjusted only once per method call; if the contents of the column later change, the column will not automatically adjust. To resize all columns, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> method. To set the column to automatically resize whenever its contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property or the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</para>
880           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
881         </remarks>
882         <summary>
883           <attribution license="cc4" from="Microsoft" modified="false" />
884           <para>Adjusts the width of the specified column to fit the contents of all its cells, including the header cell. </para>
885         </summary>
886         <param name="columnIndex">
887           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column to resize.</param>
888       </Docs>
889       <AssemblyInfo>
890         <AssemblyVersion>2.0.0.0</AssemblyVersion>
891       </AssemblyInfo>
892     </Member>
893     <Member MemberName="AutoResizeColumn">
894       <MemberSignature Language="C#" Value="public void AutoResizeColumn (int columnIndex, System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode);" />
895       <MemberType>Method</MemberType>
896       <ReturnValue>
897         <ReturnType>System.Void</ReturnType>
898       </ReturnValue>
899       <Parameters>
900         <Parameter Name="columnIndex" Type="System.Int32" />
901         <Parameter Name="autoSizeColumnMode" Type="System.Windows.Forms.DataGridViewAutoSizeColumnMode" />
902       </Parameters>
903       <Docs>
904         <since version=".NET 2.0" />
905         <remarks>
906           <attribution license="cc4" from="Microsoft" modified="false" />
907           <para>This method is useful if you want to control when a column resizes. The column width is adjusted only once per method call; if the contents of the column later change, the column will not automatically adjust. To resize all columns, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> method. To set the column to automatically resize whenever its contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property or the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</para>
908           <para>This overload lets you specify a sizing mode that calculates the new width based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
909           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
910         </remarks>
911         <summary>
912           <attribution license="cc4" from="Microsoft" modified="false" />
913           <para>Adjusts the width of the specified column using the specified size mode.</para>
914         </summary>
915         <param name="columnIndex">
916           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column to resize. </param>
917         <param name="autoSizeColumnMode">
918           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> values. </param>
919       </Docs>
920       <AssemblyInfo>
921         <AssemblyVersion>2.0.0.0</AssemblyVersion>
922       </AssemblyInfo>
923     </Member>
924     <Member MemberName="AutoResizeColumn">
925       <MemberSignature Language="C#" Value="protected void AutoResizeColumn (int columnIndex, System.Windows.Forms.DataGridViewAutoSizeColumnMode autoSizeColumnMode, bool fixedHeight);" />
926       <MemberType>Method</MemberType>
927       <ReturnValue>
928         <ReturnType>System.Void</ReturnType>
929       </ReturnValue>
930       <Parameters>
931         <Parameter Name="columnIndex" Type="System.Int32" />
932         <Parameter Name="autoSizeColumnMode" Type="System.Windows.Forms.DataGridViewAutoSizeColumnMode" />
933         <Parameter Name="fixedHeight" Type="System.Boolean" />
934       </Parameters>
935       <Docs>
936         <since version=".NET 2.0" />
937         <remarks>
938           <attribution license="cc4" from="Microsoft" modified="false" />
939           <para>This method is useful if you want to control when a column resizes. The column width is adjusted only once per method call; if the contents of the column later change, the column will not automatically adjust. To resize all columns, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> method. To set the column to automatically resize whenever its contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property or the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</para>
940           <para>This overload lets you specify a sizing mode that calculates the new width based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
941           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If <paramref name="fixedHeight" /> is false, the column width will be calculated with the expectation that you will call the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> method next. </para>
942           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
943         </remarks>
944         <summary>
945           <attribution license="cc4" from="Microsoft" modified="false" />
946           <para>Adjusts the width of the specified column using the specified size mode, optionally calculating the width with the expectation that row heights will subsequently be adjusted. </para>
947         </summary>
948         <param name="columnIndex">
949           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column to resize. </param>
950         <param name="autoSizeColumnMode">
951           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnMode" /> values. </param>
952         <param name="fixedHeight">
953           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new width based on the current row heights; false to calculate the width with the expectation that the row heights will also be adjusted.</param>
954       </Docs>
955       <AssemblyInfo>
956         <AssemblyVersion>2.0.0.0</AssemblyVersion>
957       </AssemblyInfo>
958     </Member>
959     <Member MemberName="AutoResizeColumnHeadersHeight">
960       <MemberSignature Language="C#" Value="public void AutoResizeColumnHeadersHeight ();" />
961       <MemberType>Method</MemberType>
962       <ReturnValue>
963         <ReturnType>System.Void</ReturnType>
964       </ReturnValue>
965       <Parameters />
966       <Docs>
967         <since version=".NET 2.0" />
968         <remarks>
969           <attribution license="cc4" from="Microsoft" modified="false" />
970           <para>This method is useful if you want to control when the column headers resize. The height of the column headers is adjusted only once per method call; if the contents of the column headers later change, the column headers will not automatically adjust. To set the column headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property.</para>
971           <para>For cell contents to wrap onto multiple lines when the column headers are resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
972           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
973         </remarks>
974         <summary>
975           <attribution license="cc4" from="Microsoft" modified="false" />
976           <para>Adjusts the height of the column headers to fit the contents of the largest column header.</para>
977         </summary>
978       </Docs>
979       <AssemblyInfo>
980         <AssemblyVersion>2.0.0.0</AssemblyVersion>
981       </AssemblyInfo>
982     </Member>
983     <Member MemberName="AutoResizeColumnHeadersHeight">
984       <MemberSignature Language="C#" Value="public void AutoResizeColumnHeadersHeight (int columnIndex);" />
985       <MemberType>Method</MemberType>
986       <ReturnValue>
987         <ReturnType>System.Void</ReturnType>
988       </ReturnValue>
989       <Parameters>
990         <Parameter Name="columnIndex" Type="System.Int32" />
991       </Parameters>
992       <Docs>
993         <since version=".NET 2.0" />
994         <remarks>
995           <attribution license="cc4" from="Microsoft" modified="false" />
996           <para>This method is useful if you want to control when the column headers resize if only the contents of the header in the specified column have changed as a result of user edits or changes to a bound data source. The height of the column headers is adjusted only once per method call if the content change requires it; if the contents of the column headers later change, the column headers will not automatically adjust. To set the column headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property.</para>
997           <para>For cell contents to wrap onto multiple lines when the column headers are resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
998           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
999         </remarks>
1000         <summary>
1001           <attribution license="cc4" from="Microsoft" modified="false" />
1002           <para>Adjusts the height of the column headers based on changes to the contents of the header in the specified column.</para>
1003         </summary>
1004         <param name="columnIndex">
1005           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column containing the header with the changed content.</param>
1006       </Docs>
1007       <AssemblyInfo>
1008         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1009       </AssemblyInfo>
1010     </Member>
1011     <Member MemberName="AutoResizeColumnHeadersHeight">
1012       <MemberSignature Language="C#" Value="protected void AutoResizeColumnHeadersHeight (bool fixedRowHeadersWidth, bool fixedColumnsWidth);" />
1013       <MemberType>Method</MemberType>
1014       <ReturnValue>
1015         <ReturnType>System.Void</ReturnType>
1016       </ReturnValue>
1017       <Parameters>
1018         <Parameter Name="fixedRowHeadersWidth" Type="System.Boolean" />
1019         <Parameter Name="fixedColumnsWidth" Type="System.Boolean" />
1020       </Parameters>
1021       <Docs>
1022         <since version=".NET 2.0" />
1023         <remarks>
1024           <attribution license="cc4" from="Microsoft" modified="false" />
1025           <para>This method is useful if you want to control when the column headers resize. The height of the column headers is adjusted only once per method call; if the contents of the column headers later change, the column headers will not automatically adjust. To set the column headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property.</para>
1026           <para>For cell contents to wrap onto multiple lines when the column headers are resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1027           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If the <paramref name="fixedColumnsWidth" /> or <paramref name="fixedRowHeadersWidth" /> parameters are false, the height of the column headers will be calculated with the expectation that you will call the methods such as <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> and <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth" /> next.</para>
1028           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1029         </remarks>
1030         <summary>
1031           <attribution license="cc4" from="Microsoft" modified="false" />
1032           <para>Adjusts the height of the column headers to fit their contents, optionally calculating the height with the expectation that the column and/or row header widths will subsequently be adjusted.</para>
1033         </summary>
1034         <param name="fixedRowHeadersWidth">
1035           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new height based on the current width of the row headers; false to calculate the height with the expectation that the row headers width will also be adjusted. </param>
1036         <param name="fixedColumnsWidth">
1037           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new height based on the current column widths; false to calculate the height with the expectation that the column widths will also be adjusted.</param>
1038       </Docs>
1039       <AssemblyInfo>
1040         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1041       </AssemblyInfo>
1042     </Member>
1043     <Member MemberName="AutoResizeColumnHeadersHeight">
1044       <MemberSignature Language="C#" Value="protected void AutoResizeColumnHeadersHeight (int columnIndex, bool fixedRowHeadersWidth, bool fixedColumnWidth);" />
1045       <MemberType>Method</MemberType>
1046       <ReturnValue>
1047         <ReturnType>System.Void</ReturnType>
1048       </ReturnValue>
1049       <Parameters>
1050         <Parameter Name="columnIndex" Type="System.Int32" />
1051         <Parameter Name="fixedRowHeadersWidth" Type="System.Boolean" />
1052         <Parameter Name="fixedColumnWidth" Type="System.Boolean" />
1053       </Parameters>
1054       <Docs>
1055         <since version=".NET 2.0" />
1056         <remarks>
1057           <attribution license="cc4" from="Microsoft" modified="false" />
1058           <para>This method is useful if you want to control when the column headers resize if only the contents of the header in the specified column have changed as a result of user edits or changes to a bound data source. The height of the column headers is adjusted only once per method call if the content change requires it; if the contents of the column headers later change, the column headers will not automatically adjust. To set the column headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property.</para>
1059           <para>For cell contents to wrap onto multiple lines when the column headers are resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1060           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If the <paramref name="fixedColumnWidth" /> or <paramref name="fixedRowHeadersWidth" /> parameters are false, the height of the column headers will be calculated with the expectation that you will call the methods such as <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> and <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth" /> next.</para>
1061           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1062         </remarks>
1063         <summary>
1064           <attribution license="cc4" from="Microsoft" modified="false" />
1065           <para>Adjusts the height of the column headers based on changes to the contents of the header in the specified column, optionally calculating the height with the expectation that the column and/or row header widths will subsequently be adjusted.</para>
1066         </summary>
1067         <param name="columnIndex">
1068           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column header whose contents should be used to determine new height.</param>
1069         <param name="fixedRowHeadersWidth">
1070           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new height based on the current width of the row headers; false to calculate the height with the expectation that the row headers width will also be adjusted.</param>
1071         <param name="fixedColumnWidth">
1072           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new height based on the current width of the specified column; false to calculate the height with the expectation that the column width will also be adjusted.</param>
1073       </Docs>
1074       <AssemblyInfo>
1075         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1076       </AssemblyInfo>
1077     </Member>
1078     <Member MemberName="AutoResizeColumns">
1079       <MemberSignature Language="C#" Value="public void AutoResizeColumns ();" />
1080       <MemberType>Method</MemberType>
1081       <ReturnValue>
1082         <ReturnType>System.Void</ReturnType>
1083       </ReturnValue>
1084       <Parameters />
1085       <Docs>
1086         <since version=".NET 2.0" />
1087         <remarks>
1088           <attribution license="cc4" from="Microsoft" modified="false" />
1089           <para>This method is useful if you want to control when columns resize. The column widths are adjusted only once per method call; if the contents of the columns later change, the columns will not automatically adjust. To resize a specific column, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> method. To set the columns to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property or the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</para>
1090           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1091         </remarks>
1092         <summary>
1093           <attribution license="cc4" from="Microsoft" modified="false" />
1094           <para>Adjusts the width of all columns to fit the contents of all their cells, including the header cells.</para>
1095         </summary>
1096       </Docs>
1097       <AssemblyInfo>
1098         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1099       </AssemblyInfo>
1100     </Member>
1101     <Member MemberName="AutoResizeColumns">
1102       <MemberSignature Language="C#" Value="public void AutoResizeColumns (System.Windows.Forms.DataGridViewAutoSizeColumnsMode autoSizeColumnsMode);" />
1103       <MemberType>Method</MemberType>
1104       <ReturnValue>
1105         <ReturnType>System.Void</ReturnType>
1106       </ReturnValue>
1107       <Parameters>
1108         <Parameter Name="autoSizeColumnsMode" Type="System.Windows.Forms.DataGridViewAutoSizeColumnsMode" />
1109       </Parameters>
1110       <Docs>
1111         <since version=".NET 2.0" />
1112         <remarks>
1113           <attribution license="cc4" from="Microsoft" modified="false" />
1114           <para>This method is useful if you want to control when columns resize. The column widths are adjusted only once per method call; if the contents of the columns later change, the columns will not automatically adjust. To resize a specific column, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> method. To set the columns to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property or the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</para>
1115           <para>This overload lets you specify a sizing mode that calculates the new widths based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1116           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1117         </remarks>
1118         <summary>
1119           <attribution license="cc4" from="Microsoft" modified="false" />
1120           <para>Adjusts the width of all columns using the specified size mode.</para>
1121         </summary>
1122         <param name="autoSizeColumnsMode">
1123           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> values. </param>
1124       </Docs>
1125       <AssemblyInfo>
1126         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1127       </AssemblyInfo>
1128     </Member>
1129     <Member MemberName="AutoResizeColumns">
1130       <MemberSignature Language="C#" Value="protected void AutoResizeColumns (System.Windows.Forms.DataGridViewAutoSizeColumnsMode autoSizeColumnsMode, bool fixedHeight);" />
1131       <MemberType>Method</MemberType>
1132       <ReturnValue>
1133         <ReturnType>System.Void</ReturnType>
1134       </ReturnValue>
1135       <Parameters>
1136         <Parameter Name="autoSizeColumnsMode" Type="System.Windows.Forms.DataGridViewAutoSizeColumnsMode" />
1137         <Parameter Name="fixedHeight" Type="System.Boolean" />
1138       </Parameters>
1139       <Docs>
1140         <since version=".NET 2.0" />
1141         <remarks>
1142           <attribution license="cc4" from="Microsoft" modified="false" />
1143           <para>This method is useful if you want to control when columns resize. The column widths are adjusted only once per method call; if the contents of the columns later change, the columns will not automatically adjust. To resize a specific column, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> method. To set the columns to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property or the column <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property.</para>
1144           <para>This overload lets you specify a sizing mode that calculates the new widths based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1145           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If <paramref name="fixedHeight" /> is false, the column widths will be calculated with the expectation that you will call the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> method next. </para>
1146           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1147         </remarks>
1148         <summary>
1149           <attribution license="cc4" from="Microsoft" modified="false" />
1150           <para>Adjusts the width of all columns using the specified size mode, optionally calculating the widths with the expectation that row heights will subsequently be adjusted. </para>
1151         </summary>
1152         <param name="autoSizeColumnsMode">
1153           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsMode" /> values. </param>
1154         <param name="fixedHeight">
1155           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new widths based on the current row heights; false to calculate the widths with the expectation that the row heights will also be adjusted.</param>
1156       </Docs>
1157       <AssemblyInfo>
1158         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1159       </AssemblyInfo>
1160     </Member>
1161     <Member MemberName="AutoResizeRow">
1162       <MemberSignature Language="C#" Value="public void AutoResizeRow (int rowIndex);" />
1163       <MemberType>Method</MemberType>
1164       <ReturnValue>
1165         <ReturnType>System.Void</ReturnType>
1166       </ReturnValue>
1167       <Parameters>
1168         <Parameter Name="rowIndex" Type="System.Int32" />
1169       </Parameters>
1170       <Docs>
1171         <since version=".NET 2.0" />
1172         <remarks>
1173           <attribution license="cc4" from="Microsoft" modified="false" />
1174           <para>This method is useful if you want to control when a row resizes. The row height is adjusted only once per method call; if the contents of the row later change, the row will not automatically adjust. To resize all rows, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> method. To set the row to automatically resize whenever its contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1175           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1176           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1177         </remarks>
1178         <summary>
1179           <attribution license="cc4" from="Microsoft" modified="false" />
1180           <para>Adjusts the height of the specified row to fit the contents of all its cells including the header cell.</para>
1181         </summary>
1182         <param name="rowIndex">
1183           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row to resize.</param>
1184       </Docs>
1185       <AssemblyInfo>
1186         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1187       </AssemblyInfo>
1188     </Member>
1189     <Member MemberName="AutoResizeRow">
1190       <MemberSignature Language="C#" Value="public void AutoResizeRow (int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode);" />
1191       <MemberType>Method</MemberType>
1192       <ReturnValue>
1193         <ReturnType>System.Void</ReturnType>
1194       </ReturnValue>
1195       <Parameters>
1196         <Parameter Name="rowIndex" Type="System.Int32" />
1197         <Parameter Name="autoSizeRowMode" Type="System.Windows.Forms.DataGridViewAutoSizeRowMode" />
1198       </Parameters>
1199       <Docs>
1200         <since version=".NET 2.0" />
1201         <remarks>
1202           <attribution license="cc4" from="Microsoft" modified="false" />
1203           <para>This method is useful if you want to control when a row resizes. The row height is adjusted only once per method call; if the contents of the row later change, the row will not automatically adjust. To resize all rows, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> method. To set the row to automatically resize whenever its contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1204           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1205           <para>This overload lets you specify a sizing mode that calculates the new height based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1206           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1207         </remarks>
1208         <summary>
1209           <attribution license="cc4" from="Microsoft" modified="false" />
1210           <para>Adjusts the height of the specified row using the specified size mode.</para>
1211         </summary>
1212         <param name="rowIndex">
1213           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row to resize. </param>
1214         <param name="autoSizeRowMode">
1215           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> values. </param>
1216       </Docs>
1217       <AssemblyInfo>
1218         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1219       </AssemblyInfo>
1220     </Member>
1221     <Member MemberName="AutoResizeRow">
1222       <MemberSignature Language="C#" Value="protected void AutoResizeRow (int rowIndex, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth);" />
1223       <MemberType>Method</MemberType>
1224       <ReturnValue>
1225         <ReturnType>System.Void</ReturnType>
1226       </ReturnValue>
1227       <Parameters>
1228         <Parameter Name="rowIndex" Type="System.Int32" />
1229         <Parameter Name="autoSizeRowMode" Type="System.Windows.Forms.DataGridViewAutoSizeRowMode" />
1230         <Parameter Name="fixedWidth" Type="System.Boolean" />
1231       </Parameters>
1232       <Docs>
1233         <since version=".NET 2.0" />
1234         <remarks>
1235           <attribution license="cc4" from="Microsoft" modified="false" />
1236           <para>This method is useful if you want to control when a row resizes. The row height is adjusted only once per method call; if the contents of the row later change, the row will not automatically adjust. To resize all rows, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> method. To set the row to automatically resize whenever its contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1237           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1238           <para>This overload lets you specify a sizing mode that calculates the new height based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1239           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If <paramref name="fixedWidth" /> is false, the row height will be calculated with the expectation that you will call the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> method next. </para>
1240           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1241         </remarks>
1242         <summary>
1243           <attribution license="cc4" from="Microsoft" modified="false" />
1244           <para>Adjusts the height of the specified row using the specified size mode, optionally calculating the height with the expectation that column widths will subsequently be adjusted. </para>
1245         </summary>
1246         <param name="rowIndex">
1247           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row to resize. </param>
1248         <param name="autoSizeRowMode">
1249           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> values. </param>
1250         <param name="fixedWidth">
1251           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new height based on the current width of the columns; false to calculate the height with the expectation that the column widths will also be adjusted.</param>
1252       </Docs>
1253       <AssemblyInfo>
1254         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1255       </AssemblyInfo>
1256     </Member>
1257     <Member MemberName="AutoResizeRowHeadersWidth">
1258       <MemberSignature Language="C#" Value="public void AutoResizeRowHeadersWidth (System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode);" />
1259       <MemberType>Method</MemberType>
1260       <ReturnValue>
1261         <ReturnType>System.Void</ReturnType>
1262       </ReturnValue>
1263       <Parameters>
1264         <Parameter Name="rowHeadersWidthSizeMode" Type="System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" />
1265       </Parameters>
1266       <Docs>
1267         <since version=".NET 2.0" />
1268         <remarks>
1269           <attribution license="cc4" from="Microsoft" modified="false" />
1270           <para>This method is useful if you want to control when the row headers resize. The width of the row headers is adjusted only once per method call; if the contents of the row headers later change, the row headers will not automatically adjust. To set the row headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property.</para>
1271           <para>This method lets you specify a sizing mode that calculates the new width based on values in a limited set of headers, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1272           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1273         </remarks>
1274         <summary>
1275           <attribution license="cc4" from="Microsoft" modified="false" />
1276           <para>Adjusts the width of the row headers using the specified size mode.</para>
1277         </summary>
1278         <param name="rowHeadersWidthSizeMode">
1279           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
1280       </Docs>
1281       <AssemblyInfo>
1282         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1283       </AssemblyInfo>
1284     </Member>
1285     <Member MemberName="AutoResizeRowHeadersWidth">
1286       <MemberSignature Language="C#" Value="public void AutoResizeRowHeadersWidth (int rowIndex, System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode);" />
1287       <MemberType>Method</MemberType>
1288       <ReturnValue>
1289         <ReturnType>System.Void</ReturnType>
1290       </ReturnValue>
1291       <Parameters>
1292         <Parameter Name="rowIndex" Type="System.Int32" />
1293         <Parameter Name="rowHeadersWidthSizeMode" Type="System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" />
1294       </Parameters>
1295       <Docs>
1296         <since version=".NET 2.0" />
1297         <remarks>
1298           <attribution license="cc4" from="Microsoft" modified="false" />
1299           <para>This method is useful if you want to control when the row headers resize if only the contents of the header in the specified row have changed as a result of user edits or changes to a bound data source. The width of the row headers is adjusted only once per method call if the content change requires it; if the contents of the row headers later change, the row headers will not automatically adjust. To set the row headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property.</para>
1300           <para>This method lets you specify a sizing mode that calculates the new width based on values in a limited set of headers, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1301           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1302         </remarks>
1303         <summary>
1304           <attribution license="cc4" from="Microsoft" modified="false" />
1305           <para>Adjusts the width of the row headers based on changes to the contents of the header in the specified row and using the specified size mode.</para>
1306         </summary>
1307         <param name="rowIndex">
1308           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row header with the changed content.</param>
1309         <param name="rowHeadersWidthSizeMode">
1310           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
1311       </Docs>
1312       <AssemblyInfo>
1313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1314       </AssemblyInfo>
1315     </Member>
1316     <Member MemberName="AutoResizeRowHeadersWidth">
1317       <MemberSignature Language="C#" Value="protected void AutoResizeRowHeadersWidth (System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowsHeight);" />
1318       <MemberType>Method</MemberType>
1319       <ReturnValue>
1320         <ReturnType>System.Void</ReturnType>
1321       </ReturnValue>
1322       <Parameters>
1323         <Parameter Name="rowHeadersWidthSizeMode" Type="System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" />
1324         <Parameter Name="fixedColumnHeadersHeight" Type="System.Boolean" />
1325         <Parameter Name="fixedRowsHeight" Type="System.Boolean" />
1326       </Parameters>
1327       <Docs>
1328         <since version=".NET 2.0" />
1329         <remarks>
1330           <attribution license="cc4" from="Microsoft" modified="false" />
1331           <para>This method is useful if you want to control when the row headers resize. The width of the row headers is adjusted only once per method call; if the contents of the row headers later change, the row headers will not automatically adjust. To set the row headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property.</para>
1332           <para>This method lets you specify a sizing mode that calculates the new width based on values in a limited set of headers, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1333           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If the <paramref name="fixedColumnHeadersHeight" /> or <paramref name="fixedRowsHeight" /> parameters are false, the width of the row headers will be calculated with the expectation that you will call methods such as <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> and <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight" /> next.</para>
1334           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1335         </remarks>
1336         <summary>
1337           <attribution license="cc4" from="Microsoft" modified="false" />
1338           <para>Adjusts the width of the row headers using the specified size mode, optionally calculating the width with the expectation that the row and/or column header widths will subsequently be adjusted.</para>
1339         </summary>
1340         <param name="rowHeadersWidthSizeMode">
1341           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
1342         <param name="fixedColumnHeadersHeight">
1343           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new width based on the current height of the column headers; false to calculate the width with the expectation that the height of the column headers will also be adjusted.</param>
1344         <param name="fixedRowsHeight">
1345           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new width based on the current row heights; false to calculate the width with the expectation that the row heights will also be adjusted.</param>
1346       </Docs>
1347       <AssemblyInfo>
1348         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1349       </AssemblyInfo>
1350     </Member>
1351     <Member MemberName="AutoResizeRowHeadersWidth">
1352       <MemberSignature Language="C#" Value="protected void AutoResizeRowHeadersWidth (int rowIndex, System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode rowHeadersWidthSizeMode, bool fixedColumnHeadersHeight, bool fixedRowHeight);" />
1353       <MemberType>Method</MemberType>
1354       <ReturnValue>
1355         <ReturnType>System.Void</ReturnType>
1356       </ReturnValue>
1357       <Parameters>
1358         <Parameter Name="rowIndex" Type="System.Int32" />
1359         <Parameter Name="rowHeadersWidthSizeMode" Type="System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" />
1360         <Parameter Name="fixedColumnHeadersHeight" Type="System.Boolean" />
1361         <Parameter Name="fixedRowHeight" Type="System.Boolean" />
1362       </Parameters>
1363       <Docs>
1364         <since version=".NET 2.0" />
1365         <remarks>
1366           <attribution license="cc4" from="Microsoft" modified="false" />
1367           <para>This method is useful if you want to control when the row headers resize if only the contents of the header in the specified row have changed as a result of user edits or changes to a bound data source. The width of the row headers is adjusted only once per method call if the content change requires it; if the contents of the row headers later change, the row headers will not automatically adjust. To set the row headers to automatically resize when their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property.</para>
1368           <para>This method lets you specify a sizing mode that calculates the new width based on values in a limited set of headers, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1369           <para>This overload is protected, and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If the <paramref name="fixedColumnHeadersHeight" /> or <paramref name="fixedRowHeight" /> parameters are false, the width of the row headers will be calculated with the expectation that you will call methods such as <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> and <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight" /> next.</para>
1370           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1371         </remarks>
1372         <summary>
1373           <attribution license="cc4" from="Microsoft" modified="false" />
1374           <para>Adjusts the width of the row headers based on changes to the contents of the header in the specified row and using the specified size mode, optionally calculating the width with the expectation that the row and/or column header widths will subsequently be adjusted.</para>
1375         </summary>
1376         <param name="rowIndex">
1377           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row containing the header with the changed content.</param>
1378         <param name="rowHeadersWidthSizeMode">
1379           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode" /> values.</param>
1380         <param name="fixedColumnHeadersHeight">
1381           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new width based on the current height of the column headers; false to calculate the width with the expectation that the height of the column headers will also be adjusted.</param>
1382         <param name="fixedRowHeight">
1383           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new width based on the current height of the specified row; false to calculate the width with the expectation that the row height will also be adjusted.</param>
1384       </Docs>
1385       <AssemblyInfo>
1386         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1387       </AssemblyInfo>
1388     </Member>
1389     <Member MemberName="AutoResizeRows">
1390       <MemberSignature Language="C#" Value="public void AutoResizeRows ();" />
1391       <MemberType>Method</MemberType>
1392       <ReturnValue>
1393         <ReturnType>System.Void</ReturnType>
1394       </ReturnValue>
1395       <Parameters />
1396       <Docs>
1397         <since version=".NET 2.0" />
1398         <remarks>
1399           <attribution license="cc4" from="Microsoft" modified="false" />
1400           <para>This method is useful if you want to control when rows resize. The row heights are adjusted only once per method call; if the contents of the rows later change, the rows will not automatically adjust. To resize a specific row, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> method. To resize a subset of rows, use the <see cref="M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Int32,System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)" /> overload. To set the rows to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1401           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1402           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1403         </remarks>
1404         <summary>
1405           <attribution license="cc4" from="Microsoft" modified="false" />
1406           <para>Adjusts the heights of all rows to fit the contents of all their cells, including the header cells.</para>
1407         </summary>
1408       </Docs>
1409       <AssemblyInfo>
1410         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1411       </AssemblyInfo>
1412     </Member>
1413     <Member MemberName="AutoResizeRows">
1414       <MemberSignature Language="C#" Value="public void AutoResizeRows (System.Windows.Forms.DataGridViewAutoSizeRowsMode autoSizeRowsMode);" />
1415       <MemberType>Method</MemberType>
1416       <ReturnValue>
1417         <ReturnType>System.Void</ReturnType>
1418       </ReturnValue>
1419       <Parameters>
1420         <Parameter Name="autoSizeRowsMode" Type="System.Windows.Forms.DataGridViewAutoSizeRowsMode" />
1421       </Parameters>
1422       <Docs>
1423         <since version=".NET 2.0" />
1424         <remarks>
1425           <attribution license="cc4" from="Microsoft" modified="false" />
1426           <para>This method is useful if you want to control when rows resize. The row heights are adjusted only once per method call; if the contents of the rows later change, the rows will not automatically adjust. To resize a specific row, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> method. To resize a subset of rows, use the <see cref="M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Int32,System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)" /> overload. To set the rows to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1427           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1428           <para>This overload lets you specify a sizing mode that calculates the new heights based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1429           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1430         </remarks>
1431         <summary>
1432           <attribution license="cc4" from="Microsoft" modified="false" />
1433           <para>Adjusts the heights of the rows using the specified size mode value.</para>
1434         </summary>
1435         <param name="autoSizeRowsMode">
1436           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> values. </param>
1437       </Docs>
1438       <AssemblyInfo>
1439         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1440       </AssemblyInfo>
1441     </Member>
1442     <Member MemberName="AutoResizeRows">
1443       <MemberSignature Language="C#" Value="protected void AutoResizeRows (System.Windows.Forms.DataGridViewAutoSizeRowsMode autoSizeRowsMode, bool fixedWidth);" />
1444       <MemberType>Method</MemberType>
1445       <ReturnValue>
1446         <ReturnType>System.Void</ReturnType>
1447       </ReturnValue>
1448       <Parameters>
1449         <Parameter Name="autoSizeRowsMode" Type="System.Windows.Forms.DataGridViewAutoSizeRowsMode" />
1450         <Parameter Name="fixedWidth" Type="System.Boolean" />
1451       </Parameters>
1452       <Docs>
1453         <since version=".NET 2.0" />
1454         <remarks>
1455           <attribution license="cc4" from="Microsoft" modified="false" />
1456           <para>This method is useful if you want to control when rows resize. The row heights are adjusted only once per method call; if the contents of the rows later change, the rows will not automatically adjust. To resize a specific row, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> method. To resize a subset of rows, use the <see cref="M:System.Windows.Forms.DataGridView.AutoResizeRows(System.Int32,System.Int32,System.Windows.Forms.DataGridViewAutoSizeRowMode,System.Boolean)" /> overload. To set the rows to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1457           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1458           <para>This overload lets you specify a sizing mode that calculates the new heights based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1459           <para>This overload is protected, and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If the <paramref name="fixedWidth" /> parameter is false, the row heights will be calculated with the expectation that you will call the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> method next. </para>
1460           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1461         </remarks>
1462         <summary>
1463           <attribution license="cc4" from="Microsoft" modified="false" />
1464           <para>Adjusts the heights of all rows using the specified size mode, optionally calculating the heights with the expectation that column widths will subsequently be adjusted. </para>
1465         </summary>
1466         <param name="autoSizeRowsMode">
1467           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> values.</param>
1468         <param name="fixedWidth">
1469           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new heights based on the current column widths; false to calculate the heights with the expectation that the column widths will also be adjusted.</param>
1470       </Docs>
1471       <AssemblyInfo>
1472         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1473       </AssemblyInfo>
1474     </Member>
1475     <Member MemberName="AutoResizeRows">
1476       <MemberSignature Language="C#" Value="protected void AutoResizeRows (int rowIndexStart, int rowsCount, System.Windows.Forms.DataGridViewAutoSizeRowMode autoSizeRowMode, bool fixedWidth);" />
1477       <MemberType>Method</MemberType>
1478       <ReturnValue>
1479         <ReturnType>System.Void</ReturnType>
1480       </ReturnValue>
1481       <Parameters>
1482         <Parameter Name="rowIndexStart" Type="System.Int32" />
1483         <Parameter Name="rowsCount" Type="System.Int32" />
1484         <Parameter Name="autoSizeRowMode" Type="System.Windows.Forms.DataGridViewAutoSizeRowMode" />
1485         <Parameter Name="fixedWidth" Type="System.Boolean" />
1486       </Parameters>
1487       <Docs>
1488         <since version=".NET 2.0" />
1489         <remarks>
1490           <attribution license="cc4" from="Microsoft" modified="false" />
1491           <para>This method is useful if you want to control when rows resize, but you want to resize only a specific subset of rows, such as those within a range of bound records that have been updated. The row heights for the specified rows are adjusted only once per method call; if the contents of the rows later change, the rows will not automatically adjust. To resize a specific row, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> method. To resize all rows, use a different overload of the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> method. To set the rows to automatically resize whenever their contents change, use the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeRowsMode" /> property.</para>
1492           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1493           <para>This overload lets you specify a sizing mode that calculates the new heights based on values in a limited set of cells, such as those in displayed rows only. This improves performance when the control contains a large number of rows.</para>
1494           <para>This overload is protected and is designed to enable you to achieve ideal cell height-to-width ratios in a derived <see cref="T:System.Windows.Forms.DataGridView" /> class. If the <paramref name="fixedWidth" /> parameter is false, the row heights will be calculated with the expectation that you will call the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> method next. </para>
1495           <para>For more information about programmatic resizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1496         </remarks>
1497         <summary>
1498           <attribution license="cc4" from="Microsoft" modified="false" />
1499           <para>Adjusts the heights of the specified rows using the specified size mode, optionally calculating the heights with the expectation that column widths will subsequently be adjusted. </para>
1500         </summary>
1501         <param name="rowIndexStart">
1502           <attribution license="cc4" from="Microsoft" modified="false" />The index of the first row to resize. </param>
1503         <param name="rowsCount">
1504           <attribution license="cc4" from="Microsoft" modified="false" />The number of rows to resize. </param>
1505         <param name="autoSizeRowMode">
1506           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowMode" /> values. </param>
1507         <param name="fixedWidth">
1508           <attribution license="cc4" from="Microsoft" modified="false" />true to calculate the new heights based on the current column widths; false to calculate the heights with the expectation that the column widths will also be adjusted.</param>
1509       </Docs>
1510       <AssemblyInfo>
1511         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1512       </AssemblyInfo>
1513     </Member>
1514     <Member MemberName="AutoSize">
1515       <MemberSignature Language="C#" Value="public override bool AutoSize { set; get; }" />
1516       <MemberType>Property</MemberType>
1517       <ReturnValue>
1518         <ReturnType>System.Boolean</ReturnType>
1519       </ReturnValue>
1520       <Docs>
1521         <summary>To be added.</summary>
1522         <value>To be added.</value>
1523         <remarks>To be added.</remarks>
1524         <since version=".NET 2.0" />
1525       </Docs>
1526       <AssemblyInfo>
1527         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1528       </AssemblyInfo>
1529     </Member>
1530     <Member MemberName="AutoSizeColumnModeChanged">
1531       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler AutoSizeColumnModeChanged;" />
1532       <MemberType>Event</MemberType>
1533       <ReturnValue>
1534         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeColumnModeEventHandler</ReturnType>
1535       </ReturnValue>
1536       <Docs>
1537         <since version=".NET 2.0" />
1538         <remarks>
1539           <attribution license="cc4" from="Microsoft" modified="false" />
1540           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
1541         </remarks>
1542         <summary>
1543           <attribution license="cc4" from="Microsoft" modified="false" />
1544           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property of a column changes.</para>
1545         </summary>
1546       </Docs>
1547       <AssemblyInfo>
1548         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1549       </AssemblyInfo>
1550     </Member>
1551     <Member MemberName="AutoSizeColumnsMode">
1552       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewAutoSizeColumnsMode AutoSizeColumnsMode { set; get; }" />
1553       <MemberType>Property</MemberType>
1554       <Attributes>
1555         <Attribute>
1556           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None)</AttributeName>
1557         </Attribute>
1558       </Attributes>
1559       <ReturnValue>
1560         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeColumnsMode</ReturnType>
1561       </ReturnValue>
1562       <Docs>
1563         <value>To be added.</value>
1564         <since version=".NET 2.0" />
1565         <remarks>
1566           <attribution license="cc4" from="Microsoft" modified="false" />
1567           <para>This property lets you configure the control so that column widths are automatically adjusted either to fill the control or to fit cell contents. Size adjustments occur in fill mode whenever the width of the control changes. In content-based sizing modes, size adjustments occur whenever cell contents change or, if <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> is enabled, whenever row heights change. Some content-based sizing modes let you limit the size adjustment to the currently displayed rows in order to increase performance. </para>
1568           <para>To change the sizing mode for an individual column, set its <see cref="P:System.Windows.Forms.DataGridViewColumn.AutoSizeMode" /> property. The default value of this property is <see cref="F:System.Windows.Forms.DataGridViewAutoSizeColumnMode.NotSet" />, indicating that the column inherits its behavior and its <see cref="P:System.Windows.Forms.DataGridViewColumn.InheritedAutoSizeMode" /> property value from the control. </para>
1569           <para>Columns in fill mode divide the available control width in proportions indicated by their <see cref="P:System.Windows.Forms.DataGridViewColumn.FillWeight" /> property values. The width available for fill mode is determined by subtracting the widths of all other columns from the width of the client area of the control. If this width is smaller than the combined <see cref="P:System.Windows.Forms.DataGridViewColumn.MinimumWidth" /> values of all fill-mode columns, the horizontal scroll bar is displayed, all fill-mode columns are shown with their minimum widths, and user column-resizing is disabled. For more information about column fill mode, see <format type="text/html"><a href="b4ef7411-ebf4-4e26-bb33-aecec90de80c">Column Fill Mode in the Windows Forms DataGridView Control</a></format>.</para>
1570           <para>Only columns with a <see cref="P:System.Windows.Forms.DataGridViewColumn.Visible" /> property value of true are resized automatically, and changing the visibility of a column does not cause resizing to occur. Additionally, when columns are set to automatically resize, the user cannot adjust the column widths with the mouse. </para>
1571           <para>To adjust column widths programmatically, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumn" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumns" /> methods or set the column <see cref="P:System.Windows.Forms.DataGridViewColumn.Width" /> property. </para>
1572           <para>For more information about content-based automatic sizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1573         </remarks>
1574         <summary>
1575           <attribution license="cc4" from="Microsoft" modified="false" />
1576           <para>Gets or sets a value indicating how column widths are determined.</para>
1577         </summary>
1578       </Docs>
1579       <AssemblyInfo>
1580         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1581       </AssemblyInfo>
1582     </Member>
1583     <Member MemberName="AutoSizeColumnsModeChanged">
1584       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler AutoSizeColumnsModeChanged;" />
1585       <MemberType>Event</MemberType>
1586       <ReturnValue>
1587         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventHandler</ReturnType>
1588       </ReturnValue>
1589       <Docs>
1590         <since version=".NET 2.0" />
1591         <remarks>
1592           <attribution license="cc4" from="Microsoft" modified="false" />
1593           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
1594         </remarks>
1595         <summary>
1596           <attribution license="cc4" from="Microsoft" modified="false" />
1597           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.AutoSizeColumnsMode" /> property changes.</para>
1598         </summary>
1599       </Docs>
1600       <AssemblyInfo>
1601         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1602       </AssemblyInfo>
1603     </Member>
1604     <Member MemberName="AutoSizeRowsMode">
1605       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewAutoSizeRowsMode AutoSizeRowsMode { set; get; }" />
1606       <MemberType>Property</MemberType>
1607       <Attributes>
1608         <Attribute>
1609           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewAutoSizeRowsMode.None)</AttributeName>
1610         </Attribute>
1611       </Attributes>
1612       <ReturnValue>
1613         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeRowsMode</ReturnType>
1614       </ReturnValue>
1615       <Docs>
1616         <value>To be added.</value>
1617         <since version=".NET 2.0" />
1618         <remarks>
1619           <attribution license="cc4" from="Microsoft" modified="false" />
1620           <para>This property lets you configure the control so that row heights are automatically adjusted to fit their contents whenever the contents change. If <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> is enabled, row heights are also adjusted whenever column widths change. Some sizing modes let you limit the size adjustment to the currently displayed rows in order to increase performance. </para>
1621           <para>Only rows with a <see cref="P:System.Windows.Forms.DataGridViewRow.Visible" /> property value of true are resized automatically, and changing the visibility of a row does not cause resizing to occur. Additionally, when rows are set to automatically resize, the user cannot adjust the row heights with the mouse. </para>
1622           <para>The <see cref="P:System.Windows.Forms.DataGridViewRow.Height" />  value of an automatically sized row is recalculated during layout to account for the size of the font that is used. To get the correct <see cref="P:System.Windows.Forms.DataGridViewRow.Height" />, you should retrieve the value in the form's <see cref="E:System.Windows.Forms.Control.Layout" /> event instead of in the form's constructor.</para>
1623           <para>To adjust row heights programmatically, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRow" /> or <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRows" /> methods, or set the row <see cref="P:System.Windows.Forms.DataGridViewRow.Height" /> property. </para>
1624           <para>For cell contents to wrap onto multiple lines when a row is resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
1625           <para>For more information about content-based automatic sizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
1626         </remarks>
1627         <summary>
1628           <attribution license="cc4" from="Microsoft" modified="false" />
1629           <para>Gets or sets a value indicating how row heights are determined. </para>
1630         </summary>
1631       </Docs>
1632       <AssemblyInfo>
1633         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1634       </AssemblyInfo>
1635     </Member>
1636     <Member MemberName="AutoSizeRowsModeChanged">
1637       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewAutoSizeModeEventHandler AutoSizeRowsModeChanged;" />
1638       <MemberType>Event</MemberType>
1639       <ReturnValue>
1640         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeModeEventHandler</ReturnType>
1641       </ReturnValue>
1642       <Docs>
1643         <since version=".NET 2.0" />
1644         <remarks>
1645           <attribution license="cc4" from="Microsoft" modified="false" />
1646           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
1647         </remarks>
1648         <summary>
1649           <attribution license="cc4" from="Microsoft" modified="false" />
1650           <para>Occurs when the value of the <see cref="T:System.Windows.Forms.DataGridViewAutoSizeRowsMode" /> property changes.</para>
1651         </summary>
1652       </Docs>
1653       <AssemblyInfo>
1654         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1655       </AssemblyInfo>
1656     </Member>
1657     <Member MemberName="BackColor">
1658       <MemberSignature Language="C#" Value="public override System.Drawing.Color BackColor { set; get; }" />
1659       <MemberType>Property</MemberType>
1660       <Attributes>
1661         <Attribute>
1662           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
1663         </Attribute>
1664         <Attribute>
1665           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1666         </Attribute>
1667         <Attribute>
1668           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1669         </Attribute>
1670       </Attributes>
1671       <ReturnValue>
1672         <ReturnType>System.Drawing.Color</ReturnType>
1673       </ReturnValue>
1674       <Docs>
1675         <value>To be added.</value>
1676         <since version=".NET 2.0" />
1677         <remarks>
1678           <attribution license="cc4" from="Microsoft" modified="false" />
1679           <para>This property is not relevant to this control. To set the background color of the portion of the <see cref="T:System.Windows.Forms.DataGridView" /> control not occupied by cells, use the <see cref="P:System.Windows.Forms.DataGridView.BackgroundColor" /> property.</para>
1680         </remarks>
1681         <summary>
1682           <attribution license="cc4" from="Microsoft" modified="false" />
1683           <para>Gets or sets the background color for the control.</para>
1684         </summary>
1685       </Docs>
1686       <AssemblyInfo>
1687         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1688       </AssemblyInfo>
1689     </Member>
1690     <Member MemberName="BackColorChanged">
1691       <MemberSignature Language="C#" Value="public event EventHandler BackColorChanged;" />
1692       <MemberType>Event</MemberType>
1693       <Attributes>
1694         <Attribute>
1695           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1696         </Attribute>
1697         <Attribute>
1698           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1699         </Attribute>
1700       </Attributes>
1701       <ReturnValue>
1702         <ReturnType>System.EventHandler</ReturnType>
1703       </ReturnValue>
1704       <Docs>
1705         <since version=".NET 2.0" />
1706         <remarks>
1707           <attribution license="cc4" from="Microsoft" modified="false" />
1708           <para>The <see cref="E:System.Windows.Forms.DataGridView.BackColorChanged" /> event is raised if the <see cref="P:System.Windows.Forms.DataGridView.BackColor" /> property is changed programmatically or by user interaction.</para>
1709           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1710         </remarks>
1711         <summary>
1712           <attribution license="cc4" from="Microsoft" modified="false" />
1713           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BackColor" /> property changes.</para>
1714         </summary>
1715       </Docs>
1716       <AssemblyInfo>
1717         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1718       </AssemblyInfo>
1719     </Member>
1720     <Member MemberName="BackgroundColor">
1721       <MemberSignature Language="C#" Value="public System.Drawing.Color BackgroundColor { set; get; }" />
1722       <MemberType>Property</MemberType>
1723       <ReturnValue>
1724         <ReturnType>System.Drawing.Color</ReturnType>
1725       </ReturnValue>
1726       <Docs>
1727         <value>To be added.</value>
1728         <since version=".NET 2.0" />
1729         <remarks>
1730           <attribution license="cc4" from="Microsoft" modified="false" />
1731           <para>The <see cref="P:System.Windows.Forms.DataGridView.BackgroundColor" /> property determines the color of the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that is not filled with cells.</para>
1732         </remarks>
1733         <summary>
1734           <attribution license="cc4" from="Microsoft" modified="false" />
1735           <para>Gets or sets the background color of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
1736         </summary>
1737       </Docs>
1738       <AssemblyInfo>
1739         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1740       </AssemblyInfo>
1741     </Member>
1742     <Member MemberName="BackgroundColorChanged">
1743       <MemberSignature Language="C#" Value="public event EventHandler BackgroundColorChanged;" />
1744       <MemberType>Event</MemberType>
1745       <ReturnValue>
1746         <ReturnType>System.EventHandler</ReturnType>
1747       </ReturnValue>
1748       <Docs>
1749         <since version=".NET 2.0" />
1750         <remarks>
1751           <attribution license="cc4" from="Microsoft" modified="false" />
1752           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
1753         </remarks>
1754         <summary>
1755           <attribution license="cc4" from="Microsoft" modified="false" />
1756           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BackgroundColor" /> property changes.</para>
1757         </summary>
1758       </Docs>
1759       <AssemblyInfo>
1760         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1761       </AssemblyInfo>
1762     </Member>
1763     <Member MemberName="BackgroundImage">
1764       <MemberSignature Language="C#" Value="public override System.Drawing.Image BackgroundImage { set; get; }" />
1765       <MemberType>Property</MemberType>
1766       <Attributes>
1767         <Attribute>
1768           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1769         </Attribute>
1770         <Attribute>
1771           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1772         </Attribute>
1773       </Attributes>
1774       <ReturnValue>
1775         <ReturnType>System.Drawing.Image</ReturnType>
1776       </ReturnValue>
1777       <Docs>
1778         <value>To be added.</value>
1779         <since version=".NET 2.0" />
1780         <remarks>
1781           <attribution license="cc4" from="Microsoft" modified="false" />
1782           <para>This property is not relevant for this control.</para>
1783         </remarks>
1784         <summary>
1785           <attribution license="cc4" from="Microsoft" modified="false" />
1786           <para>Gets or sets the background image displayed in the control.</para>
1787         </summary>
1788       </Docs>
1789       <AssemblyInfo>
1790         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1791       </AssemblyInfo>
1792     </Member>
1793     <Member MemberName="BackgroundImageChanged">
1794       <MemberSignature Language="C#" Value="public event EventHandler BackgroundImageChanged;" />
1795       <MemberType>Event</MemberType>
1796       <Attributes>
1797         <Attribute>
1798           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1799         </Attribute>
1800         <Attribute>
1801           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1802         </Attribute>
1803       </Attributes>
1804       <ReturnValue>
1805         <ReturnType>System.EventHandler</ReturnType>
1806       </ReturnValue>
1807       <Docs>
1808         <since version=".NET 2.0" />
1809         <remarks>
1810           <attribution license="cc4" from="Microsoft" modified="false" />
1811           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1812         </remarks>
1813         <summary>
1814           <attribution license="cc4" from="Microsoft" modified="false" />
1815           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BackgroundImage" /> property changes.</para>
1816         </summary>
1817       </Docs>
1818       <AssemblyInfo>
1819         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1820       </AssemblyInfo>
1821     </Member>
1822     <Member MemberName="BackgroundImageLayout">
1823       <MemberSignature Language="C#" Value="public override System.Windows.Forms.ImageLayout BackgroundImageLayout { set; get; }" />
1824       <MemberType>Property</MemberType>
1825       <Attributes>
1826         <Attribute>
1827           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1828         </Attribute>
1829         <Attribute>
1830           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1831         </Attribute>
1832       </Attributes>
1833       <ReturnValue>
1834         <ReturnType>System.Windows.Forms.ImageLayout</ReturnType>
1835       </ReturnValue>
1836       <Docs>
1837         <value>To be added.</value>
1838         <since version=".NET 2.0" />
1839         <remarks>
1840           <attribution license="cc4" from="Microsoft" modified="false" />
1841           <para>This property is not relevant for this control.</para>
1842         </remarks>
1843         <summary>
1844           <attribution license="cc4" from="Microsoft" modified="false" />
1845           <para>Gets or sets the background image layout as defined in the <see cref="T:System.Windows.Forms.ImageLayout" /> enumeration.</para>
1846         </summary>
1847       </Docs>
1848       <AssemblyInfo>
1849         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1850       </AssemblyInfo>
1851     </Member>
1852     <Member MemberName="BackgroundImageLayoutChanged">
1853       <MemberSignature Language="C#" Value="public event EventHandler BackgroundImageLayoutChanged;" />
1854       <MemberType>Event</MemberType>
1855       <Attributes>
1856         <Attribute>
1857           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
1858         </Attribute>
1859         <Attribute>
1860           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
1861         </Attribute>
1862       </Attributes>
1863       <ReturnValue>
1864         <ReturnType>System.EventHandler</ReturnType>
1865       </ReturnValue>
1866       <Docs>
1867         <since version=".NET 2.0" />
1868         <remarks>
1869           <attribution license="cc4" from="Microsoft" modified="false" />
1870           <para>Although this event occurs as described, the <see cref="P:System.Windows.Forms.DataGridView.BackgroundImageLayout" /> property is not relevant for this control.</para>
1871           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
1872         </remarks>
1873         <summary>
1874           <attribution license="cc4" from="Microsoft" modified="false" />
1875           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.BackgroundImageLayout" /> property changes.</para>
1876         </summary>
1877       </Docs>
1878       <AssemblyInfo>
1879         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1880       </AssemblyInfo>
1881     </Member>
1882     <Member MemberName="BeginEdit">
1883       <MemberSignature Language="C#" Value="public virtual bool BeginEdit (bool selectAll);" />
1884       <MemberType>Method</MemberType>
1885       <ReturnValue>
1886         <ReturnType>System.Boolean</ReturnType>
1887       </ReturnValue>
1888       <Parameters>
1889         <Parameter Name="selectAll" Type="System.Boolean" />
1890       </Parameters>
1891       <Docs>
1892         <since version=".NET 2.0" />
1893         <remarks>
1894           <attribution license="cc4" from="Microsoft" modified="false" />
1895           <para>This method returns false if the cell fails to enter edit mode, which can happen for a number of reasons. This method returns false if the current cell is read-only. It also returns false if the cell <see cref="P:System.Windows.Forms.DataGridViewCell.EditType" /> property is null (meaning the cell cannot host an editing control) and the cell type does not implement the <see cref="T:System.Windows.Forms.IDataGridViewEditingCell" /> interface. </para>
1896           <para>If the cell supports editing, this method raises the <see cref="E:System.Windows.Forms.DataGridView.CellBeginEdit" /> event, which can be canceled, and returns false if an event handler cancels the edit. If the edit is not canceled and the cell can host an editing control, this method initializes the control and displays it. If the initialization fails, this method returns false. </para>
1897           <para>If the cell successfully enters edit mode, the <see cref="P:System.Windows.Forms.DataGridView.IsCurrentCellInEditMode" /> property returns true. </para>
1898         </remarks>
1899         <summary>
1900           <attribution license="cc4" from="Microsoft" modified="false" />
1901           <para>Puts the current cell in edit mode.</para>
1902         </summary>
1903         <returns>
1904           <attribution license="cc4" from="Microsoft" modified="false" />
1905           <para>true if the current cell is already in edit mode or successfully enters edit mode; otherwise, false.</para>
1906         </returns>
1907         <param name="selectAll">
1908           <attribution license="cc4" from="Microsoft" modified="false" />true to select all the cell's contents; false to not select any contents.</param>
1909       </Docs>
1910       <AssemblyInfo>
1911         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1912       </AssemblyInfo>
1913     </Member>
1914     <Member MemberName="BorderStyle">
1915       <MemberSignature Language="C#" Value="public System.Windows.Forms.BorderStyle BorderStyle { set; get; }" />
1916       <MemberType>Property</MemberType>
1917       <Attributes>
1918         <Attribute>
1919           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.BorderStyle.FixedSingle)</AttributeName>
1920         </Attribute>
1921       </Attributes>
1922       <ReturnValue>
1923         <ReturnType>System.Windows.Forms.BorderStyle</ReturnType>
1924       </ReturnValue>
1925       <Docs>
1926         <value>To be added.</value>
1927         <since version=".NET 2.0" />
1928         <remarks>
1929           <attribution license="cc4" from="Microsoft" modified="false" />
1930           <para>This property affects the outer border of the <see cref="T:System.Windows.Forms.DataGridView" />. To set the style of the cell borders, use the <see cref="P:System.Windows.Forms.DataGridView.CellBorderStyle" /> property.</para>
1931         </remarks>
1932         <summary>
1933           <attribution license="cc4" from="Microsoft" modified="false" />
1934           <para>Gets or sets the border style for the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
1935         </summary>
1936       </Docs>
1937       <AssemblyInfo>
1938         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1939       </AssemblyInfo>
1940     </Member>
1941     <Member MemberName="BorderStyleChanged">
1942       <MemberSignature Language="C#" Value="public event EventHandler BorderStyleChanged;" />
1943       <MemberType>Event</MemberType>
1944       <ReturnValue>
1945         <ReturnType>System.EventHandler</ReturnType>
1946       </ReturnValue>
1947       <Docs>
1948         <since version=".NET 2.0" />
1949         <remarks>
1950           <attribution license="cc4" from="Microsoft" modified="false" />
1951           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
1952         </remarks>
1953         <summary>
1954           <attribution license="cc4" from="Microsoft" modified="false" />
1955           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.BorderStyle" /> property changes.</para>
1956         </summary>
1957       </Docs>
1958       <AssemblyInfo>
1959         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1960       </AssemblyInfo>
1961     </Member>
1962     <Member MemberName="CancelEdit">
1963       <MemberSignature Language="C#" Value="public bool CancelEdit ();" />
1964       <MemberType>Method</MemberType>
1965       <ReturnValue>
1966         <ReturnType>System.Boolean</ReturnType>
1967       </ReturnValue>
1968       <Parameters />
1969       <Docs>
1970         <remarks>To be added.</remarks>
1971         <since version=".NET 2.0" />
1972         <summary>
1973           <attribution license="cc4" from="Microsoft" modified="false" />
1974           <para>Cancels edit mode for the currently selected cell and discards any changes.</para>
1975         </summary>
1976         <returns>
1977           <attribution license="cc4" from="Microsoft" modified="false" />
1978           <para>true if the cancel was successful; otherwise, false.</para>
1979         </returns>
1980       </Docs>
1981       <AssemblyInfo>
1982         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1983       </AssemblyInfo>
1984     </Member>
1985     <Member MemberName="CancelRowEdit">
1986       <MemberSignature Language="C#" Value="public event System.Windows.Forms.QuestionEventHandler CancelRowEdit;" />
1987       <MemberType>Event</MemberType>
1988       <ReturnValue>
1989         <ReturnType>System.Windows.Forms.QuestionEventHandler</ReturnType>
1990       </ReturnValue>
1991       <Docs>
1992         <since version=".NET 2.0" />
1993         <remarks>
1994           <attribution license="cc4" from="Microsoft" modified="false" />
1995           <para>When the <see cref="T:System.Windows.Forms.DataGridView" /> is in virtual mode, changes are committed to the data cache at the cell level by default. The <see cref="E:System.Windows.Forms.DataGridView.CancelRowEdit" /> event can be used when implementing row-level transactions.</para>
1996           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
1997         </remarks>
1998         <summary>
1999           <attribution license="cc4" from="Microsoft" modified="false" />
2000           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of a <see cref="T:System.Windows.Forms.DataGridView" /> control is true and the cancels edits in a row.</para>
2001         </summary>
2002       </Docs>
2003       <AssemblyInfo>
2004         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2005       </AssemblyInfo>
2006     </Member>
2007     <Member MemberName="CanEnableIme">
2008       <MemberSignature Language="C#" Value="protected override bool CanEnableIme { get; }" />
2009       <MemberType>Property</MemberType>
2010       <AssemblyInfo>
2011         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2012       </AssemblyInfo>
2013       <ReturnValue>
2014         <ReturnType>System.Boolean</ReturnType>
2015       </ReturnValue>
2016       <Docs>
2017         <value>To be added.</value>
2018         <remarks>To be added.</remarks>
2019         <summary>
2020           <attribution license="cc4" from="Microsoft" modified="false" />
2021           <para>Gets a value indicating whether the <see cref="P:System.Windows.Forms.Control.ImeMode" /> property can be set to an active value, to enable IME support.</para>
2022         </summary>
2023       </Docs>
2024     </Member>
2025     <Member MemberName="CellBeginEdit">
2026       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellCancelEventHandler CellBeginEdit;" />
2027       <MemberType>Event</MemberType>
2028       <ReturnValue>
2029         <ReturnType>System.Windows.Forms.DataGridViewCellCancelEventHandler</ReturnType>
2030       </ReturnValue>
2031       <Docs>
2032         <since version=".NET 2.0" />
2033         <remarks>
2034           <attribution license="cc4" from="Microsoft" modified="false" />
2035           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2036         </remarks>
2037         <summary>
2038           <attribution license="cc4" from="Microsoft" modified="false" />
2039           <para>Occurs when edit mode starts for the selected cell.</para>
2040         </summary>
2041       </Docs>
2042       <AssemblyInfo>
2043         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2044       </AssemblyInfo>
2045     </Member>
2046     <Member MemberName="CellBorderStyle">
2047       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCellBorderStyle CellBorderStyle { set; get; }" />
2048       <MemberType>Property</MemberType>
2049       <Attributes>
2050         <Attribute>
2051           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewCellBorderStyle.Single)</AttributeName>
2052         </Attribute>
2053         <Attribute>
2054           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
2055         </Attribute>
2056       </Attributes>
2057       <ReturnValue>
2058         <ReturnType>System.Windows.Forms.DataGridViewCellBorderStyle</ReturnType>
2059       </ReturnValue>
2060       <Docs>
2061         <value>To be added.</value>
2062         <since version=".NET 2.0" />
2063         <remarks>
2064           <attribution license="cc4" from="Microsoft" modified="false" />
2065           <para>If the <see cref="P:System.Windows.Forms.DataGridView.CellBorderStyle" /> property is set to anything other than <see cref="F:System.Windows.Forms.DataGridViewCellBorderStyle.Single" />, <see cref="F:System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal" />, or <see cref="F:System.Windows.Forms.DataGridViewCellBorderStyle.SingleVertical" />, the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property must be a system color.</para>
2066           <para>You cannot set this property to the <see cref="F:System.Windows.Forms.DataGridViewCellBorderStyle.Custom" /> value, which is a read-only value indicating that the cell border style has been customized through the use of the <see cref="P:System.Windows.Forms.DataGridView.AdvancedCellBorderStyle" /> property.</para>
2067         </remarks>
2068         <summary>
2069           <attribution license="cc4" from="Microsoft" modified="false" />
2070           <para>Gets the cell border style for the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
2071         </summary>
2072       </Docs>
2073       <AssemblyInfo>
2074         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2075       </AssemblyInfo>
2076     </Member>
2077     <Member MemberName="CellBorderStyleChanged">
2078       <MemberSignature Language="C#" Value="public event EventHandler CellBorderStyleChanged;" />
2079       <MemberType>Event</MemberType>
2080       <ReturnValue>
2081         <ReturnType>System.EventHandler</ReturnType>
2082       </ReturnValue>
2083       <Docs>
2084         <since version=".NET 2.0" />
2085         <remarks>
2086           <attribution license="cc4" from="Microsoft" modified="false" />
2087           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2088         </remarks>
2089         <summary>
2090           <attribution license="cc4" from="Microsoft" modified="false" />
2091           <para>Occurs when the border style of a cell changes.</para>
2092         </summary>
2093       </Docs>
2094       <AssemblyInfo>
2095         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2096       </AssemblyInfo>
2097     </Member>
2098     <Member MemberName="CellClick">
2099       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellClick;" />
2100       <MemberType>Event</MemberType>
2101       <ReturnValue>
2102         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2103       </ReturnValue>
2104       <Docs>
2105         <since version=".NET 2.0" />
2106         <remarks>
2107           <attribution license="cc4" from="Microsoft" modified="false" />
2108           <para>This event occurs when any part of a cell is clicked, including borders and padding. It also occurs when the user presses and releases the SPACE key while a button cell or check box cell has focus, and will occur twice for these cell types if the cell is clicked while pressing the SPACE key.</para>
2109           <para>To determine when the cell contents are clicked, handle the <see cref="E:System.Windows.Forms.DataGridView.CellContentClick" /> event.</para>
2110           <para>This event does not receive information about the mouse position. If the event handler needs information about the mouse position, use the <see cref="E:System.Windows.Forms.DataGridView.CellMouseClick" /> event.</para>
2111           <para>For clicks in a <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />, this event occurs before the check box changes value, so if you do not want to calculate the expected value based on the current value, you will typically handle the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event instead. Because that event occurs only when the user-specified value is committed, which typically occurs when focus leaves the cell, you must also handle the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged" /> event. In that handler, if the current cell is a check box cell, call the <see cref="M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)" /> method and pass in the <see cref="F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit" /> value. </para>
2112           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2113         </remarks>
2114         <summary>
2115           <attribution license="cc4" from="Microsoft" modified="false" />
2116           <para>Occurs when any part of a cell is clicked.</para>
2117         </summary>
2118       </Docs>
2119       <AssemblyInfo>
2120         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2121       </AssemblyInfo>
2122     </Member>
2123     <Member MemberName="CellContentClick">
2124       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellContentClick;" />
2125       <MemberType>Event</MemberType>
2126       <ReturnValue>
2127         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2128       </ReturnValue>
2129       <Docs>
2130         <since version=".NET 2.0" />
2131         <remarks>
2132           <attribution license="cc4" from="Microsoft" modified="false" />
2133           <para>This event occurs when the cell content is clicked. It also occurs when the user presses and releases the SPACEBAR while a button cell or check box cell has focus, and will occur twice for these cell types if the cell content is clicked while pressing the SPACEBAR.</para>
2134           <para>Use this event to detect button clicks for a <see cref="T:System.Windows.Forms.DataGridViewButtonCell" /> or link clicks for a <see cref="T:System.Windows.Forms.DataGridViewLinkCell" />.</para>
2135           <para>For clicks in a <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />, this event occurs before the check box changes value, so if you do not want to calculate the expected value based on the current value, you will typically handle the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event instead. Because that event occurs only when the user-specified value is committed, which typically occurs when focus leaves the cell, you must also handle the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged" /> event. In that handler, if the current cell is a check box cell, call the <see cref="M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)" /> method and pass in the <see cref="F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit" /> value. </para>
2136           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
2137         </remarks>
2138         <summary>
2139           <attribution license="cc4" from="Microsoft" modified="false" />
2140           <para>Occurs when the content within a cell is clicked.</para>
2141         </summary>
2142       </Docs>
2143       <AssemblyInfo>
2144         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2145       </AssemblyInfo>
2146     </Member>
2147     <Member MemberName="CellContentDoubleClick">
2148       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellContentDoubleClick;" />
2149       <MemberType>Event</MemberType>
2150       <ReturnValue>
2151         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2152       </ReturnValue>
2153       <Docs>
2154         <since version=".NET 2.0" />
2155         <remarks>
2156           <attribution license="cc4" from="Microsoft" modified="false" />
2157           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
2158         </remarks>
2159         <summary>
2160           <attribution license="cc4" from="Microsoft" modified="false" />
2161           <para>Occurs when the user double-clicks a cell's contents.</para>
2162         </summary>
2163       </Docs>
2164       <AssemblyInfo>
2165         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2166       </AssemblyInfo>
2167     </Member>
2168     <Member MemberName="CellContextMenuStripChanged">
2169       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellContextMenuStripChanged;" />
2170       <MemberType>Event</MemberType>
2171       <Attributes>
2172         <Attribute>
2173           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2174         </Attribute>
2175       </Attributes>
2176       <ReturnValue>
2177         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2178       </ReturnValue>
2179       <Docs>
2180         <since version=".NET 2.0" />
2181         <remarks>
2182           <attribution license="cc4" from="Microsoft" modified="false" />
2183           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
2184         </remarks>
2185         <summary>
2186           <attribution license="cc4" from="Microsoft" modified="false" />
2187           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip" /> property changes. </para>
2188         </summary>
2189       </Docs>
2190       <AssemblyInfo>
2191         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2192       </AssemblyInfo>
2193     </Member>
2194     <Member MemberName="CellContextMenuStripNeeded">
2195       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler CellContextMenuStripNeeded;" />
2196       <MemberType>Event</MemberType>
2197       <Attributes>
2198         <Attribute>
2199           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2200         </Attribute>
2201       </Attributes>
2202       <ReturnValue>
2203         <ReturnType>System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventHandler</ReturnType>
2204       </ReturnValue>
2205       <Docs>
2206         <since version=".NET 2.0" />
2207         <remarks>
2208           <attribution license="cc4" from="Microsoft" modified="false" />
2209           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event occurs only when the <see cref="T:System.Windows.Forms.DataGridView" /> control <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is set or its <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true.</para>
2210           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event, the shortcut menu that you specify in the handler is shown whenever the user right-clicks a cell. This is useful when you want to display a shortcut menu determined by the current state or value of a cell. </para>
2211           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event also occurs whenever the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip" /> property is retrieved, either programmatically or when the user right-clicks a cell. </para>
2212           <para>You can use the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> properties to determine the state or value of a cell, and use this information to change or modify the <see cref="P:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs.ContextMenuStrip" /> property. This property is initialized with the value of the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip" /> property, which the event value overrides. </para>
2213           <para>Handle the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event when working with large amounts of data to avoid the performance penalties of setting the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip" /> value for multiple cells. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
2214           <para>You can also specify shortcut menus for individual rows rather than individual cells by setting the row <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property or handling the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event. The cell <see cref="P:System.Windows.Forms.DataGridViewCell.ContextMenuStrip" /> property setting overrides the row <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property setting, and the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event overrides both the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event and the row <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property setting. However, you can specify null for a cell shortcut menu to prevent a row shortcut menu from being overridden.</para>
2215           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
2216         </remarks>
2217         <summary>
2218           <attribution license="cc4" from="Microsoft" modified="false" />
2219           <para>Occurs when a cell's shortcut menu is needed. </para>
2220         </summary>
2221       </Docs>
2222       <AssemblyInfo>
2223         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2224       </AssemblyInfo>
2225     </Member>
2226     <Member MemberName="CellDoubleClick">
2227       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellDoubleClick;" />
2228       <MemberType>Event</MemberType>
2229       <ReturnValue>
2230         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2231       </ReturnValue>
2232       <Docs>
2233         <since version=".NET 2.0" />
2234         <remarks>
2235           <attribution license="cc4" from="Microsoft" modified="false" />
2236           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
2237         </remarks>
2238         <summary>
2239           <attribution license="cc4" from="Microsoft" modified="false" />
2240           <para>Occurs when the user double-clicks anywhere in a cell.</para>
2241         </summary>
2242       </Docs>
2243       <AssemblyInfo>
2244         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2245       </AssemblyInfo>
2246     </Member>
2247     <Member MemberName="CellEndEdit">
2248       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellEndEdit;" />
2249       <MemberType>Event</MemberType>
2250       <ReturnValue>
2251         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2252       </ReturnValue>
2253       <Docs>
2254         <since version=".NET 2.0" />
2255         <remarks>
2256           <attribution license="cc4" from="Microsoft" modified="false" />
2257           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2258         </remarks>
2259         <summary>
2260           <attribution license="cc4" from="Microsoft" modified="false" />
2261           <para>Occurs when edit mode stops for the currently selected cell.</para>
2262         </summary>
2263       </Docs>
2264       <AssemblyInfo>
2265         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2266       </AssemblyInfo>
2267     </Member>
2268     <Member MemberName="CellEnter">
2269       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellEnter;" />
2270       <MemberType>Event</MemberType>
2271       <ReturnValue>
2272         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2273       </ReturnValue>
2274       <Docs>
2275         <since version=".NET 2.0" />
2276         <remarks>
2277           <attribution license="cc4" from="Microsoft" modified="false" />
2278           <para>This event may occur twice for a single click if the control does not have input focus and the clicked cell was not previously the current cell.</para>
2279           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2280         </remarks>
2281         <summary>
2282           <attribution license="cc4" from="Microsoft" modified="false" />
2283           <para>Occurs when the current cell changes in the <see cref="T:System.Windows.Forms.DataGridView" /> control or when the control receives input focus. </para>
2284         </summary>
2285       </Docs>
2286       <AssemblyInfo>
2287         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2288       </AssemblyInfo>
2289     </Member>
2290     <Member MemberName="CellErrorTextChanged">
2291       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellErrorTextChanged;" />
2292       <MemberType>Event</MemberType>
2293       <ReturnValue>
2294         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2295       </ReturnValue>
2296       <Docs>
2297         <since version=".NET 2.0" />
2298         <remarks>
2299           <attribution license="cc4" from="Microsoft" modified="false" />
2300           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2301         </remarks>
2302         <summary>
2303           <attribution license="cc4" from="Microsoft" modified="false" />
2304           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ErrorText" /> property of a cell changes.</para>
2305         </summary>
2306       </Docs>
2307       <AssemblyInfo>
2308         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2309       </AssemblyInfo>
2310     </Member>
2311     <Member MemberName="CellErrorTextNeeded">
2312       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler CellErrorTextNeeded;" />
2313       <MemberType>Event</MemberType>
2314       <Attributes>
2315         <Attribute>
2316           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2317         </Attribute>
2318       </Attributes>
2319       <ReturnValue>
2320         <ReturnType>System.Windows.Forms.DataGridViewCellErrorTextNeededEventHandler</ReturnType>
2321       </ReturnValue>
2322       <Docs>
2323         <since version=".NET 2.0" />
2324         <remarks>
2325           <attribution license="cc4" from="Microsoft" modified="false" />
2326           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event occurs only when the <see cref="T:System.Windows.Forms.DataGridView" /> control <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is set or its <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true. Handling the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event is useful when you want to determine the error for a cell depending on its value or state. </para>
2327           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event and specify error text in the handler, an error glyph appears in the cell unless the <see cref="P:System.Windows.Forms.DataGridView.ShowCellErrors" /> property is set to false or the cell is in edit mode. When the user moves the mouse pointer over the error glyph, the error text appears in a ToolTip.</para>
2328           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event also occurs whenever the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ErrorText" /> property is retrieved. </para>
2329           <para>You can use the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> property to determine the state or value of a cell, and use this information to change or modify the <see cref="P:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs.ErrorText" /> property. This property is initialized with the value of the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ErrorText" /> property, which the event value overrides. </para>
2330           <para>Handle the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event when working with large amounts of data to avoid the performance penalties of setting the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ErrorText" /> value for multiple cells. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
2331           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
2332         </remarks>
2333         <summary>
2334           <attribution license="cc4" from="Microsoft" modified="false" />
2335           <para>Occurs when a cell's error text is needed.</para>
2336         </summary>
2337       </Docs>
2338       <AssemblyInfo>
2339         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2340       </AssemblyInfo>
2341     </Member>
2342     <Member MemberName="CellFormatting">
2343       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellFormattingEventHandler CellFormatting;" />
2344       <MemberType>Event</MemberType>
2345       <ReturnValue>
2346         <ReturnType>System.Windows.Forms.DataGridViewCellFormattingEventHandler</ReturnType>
2347       </ReturnValue>
2348       <Docs>
2349         <since version=".NET 2.0" />
2350         <remarks>
2351           <attribution license="cc4" from="Microsoft" modified="false" />
2352           <para>By default, the <see cref="T:System.Windows.Forms.DataGridView" /> control will attempt to convert a cell's value into a format suitable for display. For example, it will convert a numerical value into a string for display in a text box cell. You can indicate the formatting convention to use by setting the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Format" /> property of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by properties such as the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property. </para>
2353           <para>If the standard formatting is insufficient, you can customize the formatting by handling the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event. This event lets you indicate the exact display value as well as the cell styles, such as background and foreground color, to use for the cell display. This means you can handle this event for any kind of cell formatting, regardless of whether the cell value itself needs formatting.</para>
2354           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event occurs every time each cell is painted, so you should avoid lengthy processing when handling this event. This event also occurs when the cell <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValue" /> is retrieved or its <see cref="M:System.Windows.Forms.DataGridViewCell.GetFormattedValue(System.Object,System.Int32,System.Windows.Forms.DataGridViewCellStyle@,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter,System.Windows.Forms.DataGridViewDataErrorContexts)" /> method is called.</para>
2355           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event, the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> property is initialized with the cell value. If you provide custom conversion from the cell value to the display value, set the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> property to the converted value, ensuring that the new value is of the type specified by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.FormattedValueType" /> property. To indicate that no further value formatting is necessary, set the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied" /> property to true. </para>
2356           <para>When the event handler completes, if the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> is null or is not of the correct type, or the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied" /> property is false, the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> is formatted using the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Format" />, <see cref="P:System.Windows.Forms.DataGridViewCellStyle.NullValue" />, <see cref="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue" />, and <see cref="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider" /> properties of the cell style returned by the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle" /> property, which is initialized using the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property.</para>
2357           <para>Regardless of the value of the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.FormattingApplied" /> property, the display properties of the object returned by the <see cref="P:System.Windows.Forms.DataGridViewCellFormattingEventArgs.CellStyle" /> property are used to render the cell. </para>
2358           <para>For more information about custom formatting using the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event, see <format type="text/html"><a href="a6e72c70-ce18-425f-828d-d57be6f96ab6">How to: Customize Data Formatting in the Windows Forms DataGridView Control</a></format>.</para>
2359           <para>To avoid performance penalties when handling this event, access the cell through the parameters of the event handler rather than accessing the cell directly.</para>
2360           <para>To customize the conversion of a formatted, user-specified value into an actual cell value, handle the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event.</para>
2361           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2362         </remarks>
2363         <summary>
2364           <attribution license="cc4" from="Microsoft" modified="false" />
2365           <para>Occurs when the contents of a cell need to be formatted for display.</para>
2366         </summary>
2367       </Docs>
2368       <AssemblyInfo>
2369         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2370       </AssemblyInfo>
2371     </Member>
2372     <Member MemberName="CellLeave">
2373       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellLeave;" />
2374       <MemberType>Event</MemberType>
2375       <ReturnValue>
2376         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2377       </ReturnValue>
2378       <Docs>
2379         <since version=".NET 2.0" />
2380         <remarks>
2381           <attribution license="cc4" from="Microsoft" modified="false" />
2382           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2383         </remarks>
2384         <summary>
2385           <attribution license="cc4" from="Microsoft" modified="false" />
2386           <para>Occurs when a cell loses input focus and is no longer the current cell.</para>
2387         </summary>
2388       </Docs>
2389       <AssemblyInfo>
2390         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2391       </AssemblyInfo>
2392     </Member>
2393     <Member MemberName="CellMouseClick">
2394       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler CellMouseClick;" />
2395       <MemberType>Event</MemberType>
2396       <ReturnValue>
2397         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
2398       </ReturnValue>
2399       <Docs>
2400         <since version=".NET 2.0" />
2401         <remarks>
2402           <attribution license="cc4" from="Microsoft" modified="false" />
2403           <para>This event occurs when the user clicks using any of the mouse buttons. Use the <see cref="P:System.Windows.Forms.MouseEventArgs.Button" /> property to determine which button was clicked.</para>
2404           <para>To detect clicks on the contents of a cell, such as a button or link within a cell, use the <see cref="E:System.Windows.Forms.DataGridView.CellContentClick" /> event.</para>
2405           <para>The handler for this event receives the column index and row index of the mouse pointer position.</para>
2406           <para>For clicks in a <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" />, this event occurs before the check box changes value, so if you do not want to calculate the expected value based on the current value, you will typically handle the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event instead. Because that event occurs only when the user-specified value is committed, which typically occurs when focus leaves the cell, you must also handle the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged" /> event. In that handler, if the current cell is a check box cell, call the <see cref="M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)" /> method and pass in the <see cref="F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit" /> value. </para>
2407           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2408         </remarks>
2409         <summary>
2410           <attribution license="cc4" from="Microsoft" modified="false" />
2411           <para>Occurs whenever the user clicks anywhere on a cell with the mouse.</para>
2412         </summary>
2413       </Docs>
2414       <AssemblyInfo>
2415         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2416       </AssemblyInfo>
2417     </Member>
2418     <Member MemberName="CellMouseDoubleClick">
2419       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler CellMouseDoubleClick;" />
2420       <MemberType>Event</MemberType>
2421       <ReturnValue>
2422         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
2423       </ReturnValue>
2424       <Docs>
2425         <since version=".NET 2.0" />
2426         <remarks>
2427           <attribution license="cc4" from="Microsoft" modified="false" />
2428           <para>This event occurs when the user double-clicks using any of the mouse buttons. Use the <see cref="P:System.Windows.Forms.MouseEventArgs.Button" /> property to determine which button was clicked.</para>
2429           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
2430         </remarks>
2431         <summary>
2432           <attribution license="cc4" from="Microsoft" modified="false" />
2433           <para>Occurs when a cell within the <see cref="T:System.Windows.Forms.DataGridView" /> is double-clicked.</para>
2434         </summary>
2435       </Docs>
2436       <AssemblyInfo>
2437         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2438       </AssemblyInfo>
2439     </Member>
2440     <Member MemberName="CellMouseDown">
2441       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler CellMouseDown;" />
2442       <MemberType>Event</MemberType>
2443       <ReturnValue>
2444         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
2445       </ReturnValue>
2446       <Docs>
2447         <since version=".NET 2.0" />
2448         <remarks>
2449           <attribution license="cc4" from="Microsoft" modified="false" />
2450           <para>This event occurs when the user presses any of the mouse buttons. Use the <see cref="P:System.Windows.Forms.MouseEventArgs.Button" /> property to determine which button was clicked.</para>
2451           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2452         </remarks>
2453         <summary>
2454           <attribution license="cc4" from="Microsoft" modified="false" />
2455           <para>Occurs when the user presses a mouse button while the mouse pointer is within the boundaries of a cell.</para>
2456         </summary>
2457       </Docs>
2458       <AssemblyInfo>
2459         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2460       </AssemblyInfo>
2461     </Member>
2462     <Member MemberName="CellMouseEnter">
2463       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellMouseEnter;" />
2464       <MemberType>Event</MemberType>
2465       <ReturnValue>
2466         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2467       </ReturnValue>
2468       <Docs>
2469         <since version=".NET 2.0" />
2470         <remarks>
2471           <attribution license="cc4" from="Microsoft" modified="false" />
2472           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2473         </remarks>
2474         <summary>
2475           <attribution license="cc4" from="Microsoft" modified="false" />
2476           <para>Occurs when the mouse pointer enters a cell.</para>
2477         </summary>
2478       </Docs>
2479       <AssemblyInfo>
2480         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2481       </AssemblyInfo>
2482     </Member>
2483     <Member MemberName="CellMouseLeave">
2484       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellMouseLeave;" />
2485       <MemberType>Event</MemberType>
2486       <ReturnValue>
2487         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2488       </ReturnValue>
2489       <Docs>
2490         <since version=".NET 2.0" />
2491         <remarks>
2492           <attribution license="cc4" from="Microsoft" modified="false" />
2493           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2494         </remarks>
2495         <summary>
2496           <attribution license="cc4" from="Microsoft" modified="false" />
2497           <para>Occurs when the mouse pointer leaves a cell.</para>
2498         </summary>
2499       </Docs>
2500       <AssemblyInfo>
2501         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2502       </AssemblyInfo>
2503     </Member>
2504     <Member MemberName="CellMouseMove">
2505       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler CellMouseMove;" />
2506       <MemberType>Event</MemberType>
2507       <ReturnValue>
2508         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
2509       </ReturnValue>
2510       <Docs>
2511         <since version=".NET 2.0" />
2512         <remarks>
2513           <attribution license="cc4" from="Microsoft" modified="false" />
2514           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2515         </remarks>
2516         <summary>
2517           <attribution license="cc4" from="Microsoft" modified="false" />
2518           <para>Occurs when the mouse pointer moves over the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
2519         </summary>
2520       </Docs>
2521       <AssemblyInfo>
2522         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2523       </AssemblyInfo>
2524     </Member>
2525     <Member MemberName="CellMouseUp">
2526       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler CellMouseUp;" />
2527       <MemberType>Event</MemberType>
2528       <ReturnValue>
2529         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
2530       </ReturnValue>
2531       <Docs>
2532         <since version=".NET 2.0" />
2533         <remarks>
2534           <attribution license="cc4" from="Microsoft" modified="false" />
2535           <para>This event occurs when the user releases any of the mouse buttons. Use the <see cref="P:System.Windows.Forms.MouseEventArgs.Button" /> property to determine which button was clicked.</para>
2536           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2537         </remarks>
2538         <summary>
2539           <attribution license="cc4" from="Microsoft" modified="false" />
2540           <para>Occurs when the user releases a mouse button while over a cell.</para>
2541         </summary>
2542       </Docs>
2543       <AssemblyInfo>
2544         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2545       </AssemblyInfo>
2546     </Member>
2547     <Member MemberName="CellPainting">
2548       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellPaintingEventHandler CellPainting;" />
2549       <MemberType>Event</MemberType>
2550       <ReturnValue>
2551         <ReturnType>System.Windows.Forms.DataGridViewCellPaintingEventHandler</ReturnType>
2552       </ReturnValue>
2553       <Docs>
2554         <since version=".NET 2.0" />
2555         <remarks>
2556           <attribution license="cc4" from="Microsoft" modified="false" />
2557           <para>You can handle this event to customize the appearance of cells in the control. You can paint entire cells yourself, or paint specific parts of cells and use the <see cref="M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintBackground(System.Drawing.Rectangle,System.Boolean)" /> or <see cref="M:System.Windows.Forms.DataGridViewCellPaintingEventArgs.PaintContent(System.Drawing.Rectangle)" /> methods to paint other parts. You can also use the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> class to paint standard controls using the current theme. For more information, see <format type="text/html"><a href="a5b178ba-610e-46c4-a6c0-509c0886a744">Rendering Controls with Visual Styles</a></format>. If you are using vsprvslong, you also have access to a large library of standard images that you can use with the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
2558           <para>
2559             <dynamicLink>
2560               <keyword>vsimagelibrary</keyword>
2561             </dynamicLink>
2562           </para>
2563           <para>When handling this event, you should access the cell through the parameters of the event handler, rather than access the cell directly.</para>
2564           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2565         </remarks>
2566         <summary>
2567           <attribution license="cc4" from="Microsoft" modified="false" />
2568           <para>Occurs when a cell needs to be drawn.</para>
2569         </summary>
2570       </Docs>
2571       <AssemblyInfo>
2572         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2573       </AssemblyInfo>
2574     </Member>
2575     <Member MemberName="CellParsing">
2576       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellParsingEventHandler CellParsing;" />
2577       <MemberType>Event</MemberType>
2578       <ReturnValue>
2579         <ReturnType>System.Windows.Forms.DataGridViewCellParsingEventHandler</ReturnType>
2580       </ReturnValue>
2581       <Docs>
2582         <since version=".NET 2.0" />
2583         <remarks>
2584           <attribution license="cc4" from="Microsoft" modified="false" />
2585           <para>By default, the <see cref="T:System.Windows.Forms.DataGridView" /> control will attempt to convert a user-specified value displayed in a cell to an actual underlying cell value in the type specified by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ValueType" /> property. This conversion uses the formatting properties of the cell style returned by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property. </para>
2586           <para>If the standard conversion does not meet your needs, handle the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event to provide custom value conversion to the required type. </para>
2587           <para>Users can enter edit mode using the method specified by the <see cref="P:System.Windows.Forms.DataGridView.EditMode" /> property, and can leave edit mode, committing any changes to a cell, by moving to another cell or by pressing ENTER. Pressing ESC will revert any changes to the value before it is committed, and the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event will not occur. The <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event occurs only if the cell value has actually been modified, even if the final value is the same as the original value. It also occurs when the <see cref="M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)" /> method is called.</para>
2588           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event, you can convert the value yourself or you can customize the default conversion. For example, you can convert the value yourself using the cell <see cref="M:System.Windows.Forms.DataGridViewCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)" /> method with type converters of your choosing. Alternatively, you can let the default type converters parse the value, but modify the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.NullValue" />, <see cref="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue" />, and <see cref="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider" /> properties of the object returned by the <see cref="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.InheritedCellStyle" /> property, which is initialized using the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property. </para>
2589           <para>When you convert the value yourself, replace the initial, formatted value of the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> property with the converted value in the type specified by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ValueType" /> property. To indicate that no further parsing is necessary, set the <see cref="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied" /> property to true. </para>
2590           <para>When the event handler completes, if the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> is null or is not of the correct type, or the <see cref="P:System.Windows.Forms.DataGridViewCellParsingEventArgs.ParsingApplied" /> property is false, the <see cref="P:System.Windows.Forms.ConvertEventArgs.Value" /> is parsed using the cell <see cref="M:System.Windows.Forms.DataGridViewCell.ParseFormattedValue(System.Object,System.Windows.Forms.DataGridViewCellStyle,System.ComponentModel.TypeConverter,System.ComponentModel.TypeConverter)" /> method with default type converters. The default implementation of this method parses the value using the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.NullValue" />, <see cref="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue" />, and <see cref="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider" /> properties of the cell style passed in. If the value is not equal to <see cref="P:System.Windows.Forms.DataGridViewCellStyle.NullValue" />, the value is parsed using the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.FormatProvider" /> property and the type converters passed in. </para>
2591           <para>To customize the conversion of a cell value into a formatted value for display, handle the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event.</para>
2592           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2593         </remarks>
2594         <summary>
2595           <attribution license="cc4" from="Microsoft" modified="false" />
2596           <para>Occurs when a cell leaves edit mode if the cell value has been modified.</para>
2597         </summary>
2598       </Docs>
2599       <AssemblyInfo>
2600         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2601       </AssemblyInfo>
2602     </Member>
2603     <Member MemberName="CellStateChanged">
2604       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellStateChangedEventHandler CellStateChanged;" />
2605       <MemberType>Event</MemberType>
2606       <ReturnValue>
2607         <ReturnType>System.Windows.Forms.DataGridViewCellStateChangedEventHandler</ReturnType>
2608       </ReturnValue>
2609       <Docs>
2610         <since version=".NET 2.0" />
2611         <remarks>
2612           <attribution license="cc4" from="Microsoft" modified="false" />
2613           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2614         </remarks>
2615         <summary>
2616           <attribution license="cc4" from="Microsoft" modified="false" />
2617           <para>Occurs when a cell state changes, such as when the cell loses or gains focus.</para>
2618         </summary>
2619       </Docs>
2620       <AssemblyInfo>
2621         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2622       </AssemblyInfo>
2623     </Member>
2624     <Member MemberName="CellStyleChanged">
2625       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellStyleChanged;" />
2626       <MemberType>Event</MemberType>
2627       <ReturnValue>
2628         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2629       </ReturnValue>
2630       <Docs>
2631         <since version=".NET 2.0" />
2632         <remarks>
2633           <attribution license="cc4" from="Microsoft" modified="false" />
2634           <para>This event occurs when any property of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by a <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property is set to a new value or when a <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
2635           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2636         </remarks>
2637         <summary>
2638           <attribution license="cc4" from="Microsoft" modified="false" />
2639           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> property of a <see cref="T:System.Windows.Forms.DataGridViewCell" /> changes.</para>
2640         </summary>
2641       </Docs>
2642       <AssemblyInfo>
2643         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2644       </AssemblyInfo>
2645     </Member>
2646     <Member MemberName="CellStyleContentChanged">
2647       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler CellStyleContentChanged;" />
2648       <MemberType>Event</MemberType>
2649       <ReturnValue>
2650         <ReturnType>System.Windows.Forms.DataGridViewCellStyleContentChangedEventHandler</ReturnType>
2651       </ReturnValue>
2652       <Docs>
2653         <since version=".NET 2.0" />
2654         <remarks>
2655           <attribution license="cc4" from="Microsoft" modified="false" />
2656           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellStyleContentChanged" /> event occurs when a property value of a <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> object returned by one of the following properties changes:</para>
2657           <list type="bullet">
2658             <item>
2659               <para>
2660                 <see cref="P:System.Windows.Forms.DataGridViewCell.Style" />
2661               </para>
2662             </item>
2663             <item>
2664               <para>
2665                 <see cref="P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle" />
2666               </para>
2667             </item>
2668             <item>
2669               <para>
2670                 <see cref="P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle" />
2671               </para>
2672             </item>
2673             <item>
2674               <para>
2675                 <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" />
2676               </para>
2677             </item>
2678             <item>
2679               <para>
2680                 <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" />
2681               </para>
2682             </item>
2683             <item>
2684               <para>
2685                 <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" />
2686               </para>
2687             </item>
2688             <item>
2689               <para>
2690                 <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" />
2691               </para>
2692             </item>
2693             <item>
2694               <para>
2695                 <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" />
2696               </para>
2697             </item>
2698           </list>
2699           <para>If one of these properties is set to a different <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />, however, the corresponding PropertyNameChanged event occurs, but the <see cref="E:System.Windows.Forms.DataGridView.CellStyleContentChanged" /> event does not occur. </para>
2700           <para>For row, column, and cell properties, the name of the PropertyNameChanged event begins with "Row", "Column", or "Cell" (for example, <see cref="E:System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged" />). </para>
2701           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2702         </remarks>
2703         <summary>
2704           <attribution license="cc4" from="Microsoft" modified="false" />
2705           <para>Occurs when one of the values of a cell style changes.</para>
2706         </summary>
2707       </Docs>
2708       <AssemblyInfo>
2709         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2710       </AssemblyInfo>
2711     </Member>
2712     <Member MemberName="CellToolTipTextChanged">
2713       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellToolTipTextChanged;" />
2714       <MemberType>Event</MemberType>
2715       <ReturnValue>
2716         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2717       </ReturnValue>
2718       <Docs>
2719         <since version=".NET 2.0" />
2720         <remarks>
2721           <attribution license="cc4" from="Microsoft" modified="false" />
2722           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
2723         </remarks>
2724         <summary>
2725           <attribution license="cc4" from="Microsoft" modified="false" />
2726           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> property value changes for a cell in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
2727         </summary>
2728       </Docs>
2729       <AssemblyInfo>
2730         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2731       </AssemblyInfo>
2732     </Member>
2733     <Member MemberName="CellToolTipTextNeeded">
2734       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler CellToolTipTextNeeded;" />
2735       <MemberType>Event</MemberType>
2736       <Attributes>
2737         <Attribute>
2738           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2739         </Attribute>
2740       </Attributes>
2741       <ReturnValue>
2742         <ReturnType>System.Windows.Forms.DataGridViewCellToolTipTextNeededEventHandler</ReturnType>
2743       </ReturnValue>
2744       <Docs>
2745         <since version=".NET 2.0" />
2746         <remarks>
2747           <attribution license="cc4" from="Microsoft" modified="false" />
2748           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event occurs only when the <see cref="T:System.Windows.Forms.DataGridView" /> control <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is set or its <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true.</para>
2749           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event, the ToolTip text you specify in the handler is shown whenever the mouse pointer is over a cell and the control <see cref="P:System.Windows.Forms.DataGridView.ShowCellToolTips" /> property value is true. The <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event is useful when you want to display ToolTips determined by the current state or value of a cell. </para>
2750           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event also occurs whenever the value of the <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> property is retrieved, either programmatically or when the mouse pointer enters a cell. </para>
2751           <para>You can use the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.ColumnIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> properties to determine the state or value of a cell, and use this information to change or modify the <see cref="P:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText" /> property. This property is initialized with the value of the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> property, which the event value overrides. </para>
2752           <para>Handle the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event when working with large amounts of data to avoid the performance penalties of setting the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> value for multiple cells. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
2753           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
2754         </remarks>
2755         <summary>
2756           <attribution license="cc4" from="Microsoft" modified="false" />
2757           <para>Occurs when a cell's ToolTip text is needed.</para>
2758         </summary>
2759       </Docs>
2760       <AssemblyInfo>
2761         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2762       </AssemblyInfo>
2763     </Member>
2764     <Member MemberName="CellValidated">
2765       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellValidated;" />
2766       <MemberType>Event</MemberType>
2767       <ReturnValue>
2768         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2769       </ReturnValue>
2770       <Docs>
2771         <since version=".NET 2.0" />
2772         <remarks>
2773           <attribution license="cc4" from="Microsoft" modified="false" />
2774           <para>Handling this event is useful for post-validation processing of the cell value.</para>
2775           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2776         </remarks>
2777         <summary>
2778           <attribution license="cc4" from="Microsoft" modified="false" />
2779           <para>Occurs after the cell has finished validating.</para>
2780         </summary>
2781       </Docs>
2782       <AssemblyInfo>
2783         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2784       </AssemblyInfo>
2785     </Member>
2786     <Member MemberName="CellValidating">
2787       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellValidatingEventHandler CellValidating;" />
2788       <MemberType>Event</MemberType>
2789       <ReturnValue>
2790         <ReturnType>System.Windows.Forms.DataGridViewCellValidatingEventHandler</ReturnType>
2791       </ReturnValue>
2792       <Docs>
2793         <since version=".NET 2.0" />
2794         <remarks>
2795           <attribution license="cc4" from="Microsoft" modified="false" />
2796           <para>Canceling this event cancels the changes to the current cell. When this event is canceled in data-bound mode, the new value is not pushed to the underlying data source. When this event is canceled in virtual mode, the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event will not be raised.</para>
2797           <para>Handle the <see cref="E:System.Windows.Forms.DataGridView.CellValidated" /> event to perform post-validation processing.</para>
2798           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2799         </remarks>
2800         <summary>
2801           <attribution license="cc4" from="Microsoft" modified="false" />
2802           <para>Occurs when a cell loses input focus, enabling content validation.</para>
2803         </summary>
2804       </Docs>
2805       <AssemblyInfo>
2806         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2807       </AssemblyInfo>
2808     </Member>
2809     <Member MemberName="CellValueChanged">
2810       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler CellValueChanged;" />
2811       <MemberType>Event</MemberType>
2812       <ReturnValue>
2813         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
2814       </ReturnValue>
2815       <Docs>
2816         <since version=".NET 2.0" />
2817         <remarks>
2818           <attribution license="cc4" from="Microsoft" modified="false" />
2819           <para>The <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event occurs when the user-specified value is committed, which typically occurs when focus leaves the cell. </para>
2820           <para>In the case of check box cells, however, you will typically want to handle the change immediately. To commit the change when the cell is clicked, you must handle the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged" /> event. In the handler, if the current cell is a check box cell, call the <see cref="M:System.Windows.Forms.DataGridView.CommitEdit(System.Windows.Forms.DataGridViewDataErrorContexts)" /> method and pass in the <see cref="F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit" /> value. </para>
2821           <para>Rows in the control are not automatically sorted when a cell value is changed. To sort the control when the user modifies a cell, call the <see cref="Overload:System.Windows.Forms.DataGridView.Sort" /> method in a <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event handler.</para>
2822           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2823         </remarks>
2824         <summary>
2825           <attribution license="cc4" from="Microsoft" modified="false" />
2826           <para>Occurs when the value of a cell changes.</para>
2827         </summary>
2828       </Docs>
2829       <AssemblyInfo>
2830         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2831       </AssemblyInfo>
2832     </Member>
2833     <Member MemberName="CellValueNeeded">
2834       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellValueEventHandler CellValueNeeded;" />
2835       <MemberType>Event</MemberType>
2836       <Attributes>
2837         <Attribute>
2838           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2839         </Attribute>
2840       </Attributes>
2841       <ReturnValue>
2842         <ReturnType>System.Windows.Forms.DataGridViewCellValueEventHandler</ReturnType>
2843       </ReturnValue>
2844       <Docs>
2845         <since version=".NET 2.0" />
2846         <remarks>
2847           <attribution license="cc4" from="Microsoft" modified="false" />
2848           <para>Use this event in virtual mode to populate cells with data from a custom data store without causing rows to become unshared. For more information about row sharing, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>. For more information about virtual mode, see <format type="text/html"><a href="feae5d43-2848-4b1a-8ea7-77085dc415b5">Virtual Mode in the Windows Forms DataGridView Control</a></format>.</para>
2849           <para>To add user-specified values to your custom data store, handle the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event.</para>
2850           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2851         </remarks>
2852         <summary>
2853           <attribution license="cc4" from="Microsoft" modified="false" />
2854           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is true and the <see cref="T:System.Windows.Forms.DataGridView" /> requires a value for a cell in order to format and display the cell.</para>
2855         </summary>
2856       </Docs>
2857       <AssemblyInfo>
2858         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2859       </AssemblyInfo>
2860     </Member>
2861     <Member MemberName="CellValuePushed">
2862       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellValueEventHandler CellValuePushed;" />
2863       <MemberType>Event</MemberType>
2864       <Attributes>
2865         <Attribute>
2866           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
2867         </Attribute>
2868       </Attributes>
2869       <ReturnValue>
2870         <ReturnType>System.Windows.Forms.DataGridViewCellValueEventHandler</ReturnType>
2871       </ReturnValue>
2872       <Docs>
2873         <since version=".NET 2.0" />
2874         <remarks>
2875           <attribution license="cc4" from="Microsoft" modified="false" />
2876           <para>Use this event in virtual mode to update a custom data store with user-specified data. Handle the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event to retrieve values from the data store for display in the control.</para>
2877           <para>For more information about virtual mode, see <format type="text/html"><a href="feae5d43-2848-4b1a-8ea7-77085dc415b5">Virtual Mode in the Windows Forms DataGridView Control</a></format>.</para>
2878           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
2879         </remarks>
2880         <summary>
2881           <attribution license="cc4" from="Microsoft" modified="false" />
2882           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is true and a cell value has changed and requires storage in the underlying data source.</para>
2883         </summary>
2884       </Docs>
2885       <AssemblyInfo>
2886         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2887       </AssemblyInfo>
2888     </Member>
2889     <Member MemberName="ClearSelection">
2890       <MemberSignature Language="C#" Value="public void ClearSelection ();" />
2891       <MemberType>Method</MemberType>
2892       <ReturnValue>
2893         <ReturnType>System.Void</ReturnType>
2894       </ReturnValue>
2895       <Parameters />
2896       <Docs>
2897         <since version=".NET 2.0" />
2898         <remarks>
2899           <attribution license="cc4" from="Microsoft" modified="false" />
2900           <para>When this method is called, each column and row's <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" /> property is set to false.</para>
2901         </remarks>
2902         <summary>
2903           <attribution license="cc4" from="Microsoft" modified="false" />
2904           <para>Clears the current selection by unselecting all selected cells.</para>
2905         </summary>
2906       </Docs>
2907       <AssemblyInfo>
2908         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2909       </AssemblyInfo>
2910     </Member>
2911     <Member MemberName="ClearSelection">
2912       <MemberSignature Language="C#" Value="protected void ClearSelection (int columnIndexException, int rowIndexException, bool selectExceptionElement);" />
2913       <MemberType>Method</MemberType>
2914       <ReturnValue>
2915         <ReturnType>System.Void</ReturnType>
2916       </ReturnValue>
2917       <Parameters>
2918         <Parameter Name="columnIndexException" Type="System.Int32" />
2919         <Parameter Name="rowIndexException" Type="System.Int32" />
2920         <Parameter Name="selectExceptionElement" Type="System.Boolean" />
2921       </Parameters>
2922       <Docs>
2923         <since version=".NET 2.0" />
2924         <remarks>
2925           <attribution license="cc4" from="Microsoft" modified="false" />
2926           <para>A <paramref name="rowIndexException" /> value of -1 represents a column header, and a <paramref name="columnIndexException" /> value of -1 represents a row header. </para>
2927           <para>This method is useful to clear the current selection without canceling the selection of the cell, row, or column indicated by the exception indexes. </para>
2928           <para>If the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value allows individual cell selection, this method sets the <see cref="P:System.Windows.Forms.DataGridViewCell.Selected" /> property of each cell to false, excluding the cell in the row and column specified. If the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value allows full row or column selection, this method also sets the <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" /> property of each row or column to false, excluding the row or column containing the specified cell. </para>
2929           <para>The excluded cell, row, or column may or may not be in the selected state when this method is called. This method selects it if the <paramref name="selectExceptionElement" /> parameter value is true. Depending on the selection mode, the entire row or column may also be selected as a result. </para>
2930         </remarks>
2931         <summary>
2932           <attribution license="cc4" from="Microsoft" modified="false" />
2933           <para>Cancels the selection of all currently selected cells except the one indicated, optionally ensuring that the indicated cell is selected. </para>
2934         </summary>
2935         <param name="columnIndexException">
2936           <attribution license="cc4" from="Microsoft" modified="false" />The column index to exclude.</param>
2937         <param name="rowIndexException">
2938           <attribution license="cc4" from="Microsoft" modified="false" />The row index to exclude.</param>
2939         <param name="selectExceptionElement">
2940           <attribution license="cc4" from="Microsoft" modified="false" />true to select the excluded cell, row, or column; false to retain its original state.</param>
2941       </Docs>
2942       <AssemblyInfo>
2943         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2944       </AssemblyInfo>
2945     </Member>
2946     <Member MemberName="ClipboardCopyMode">
2947       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewClipboardCopyMode ClipboardCopyMode { set; get; }" />
2948       <MemberType>Property</MemberType>
2949       <Attributes>
2950         <Attribute>
2951           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithAutoHeaderText)</AttributeName>
2952         </Attribute>
2953         <Attribute>
2954           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
2955         </Attribute>
2956       </Attributes>
2957       <ReturnValue>
2958         <ReturnType>System.Windows.Forms.DataGridViewClipboardCopyMode</ReturnType>
2959       </ReturnValue>
2960       <Docs>
2961         <value>To be added.</value>
2962         <since version=".NET 2.0" />
2963         <remarks>
2964           <attribution license="cc4" from="Microsoft" modified="false" />
2965           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control copies the text representation of each selected cell to the Clipboard. This value is the cell value converted to a string or, for image cells, the value of the <see cref="P:System.Windows.Forms.DataGridViewImageCell.Description" /> property. </para>
2966           <para>Values are copied to the Clipboard in <see cref="F:System.Windows.Forms.DataFormats.Text" />, <see cref="F:System.Windows.Forms.DataFormats.UnicodeText" />, <see cref="F:System.Windows.Forms.DataFormats.Html" />, and <see cref="F:System.Windows.Forms.DataFormats.CommaSeparatedValue" /> formats. These formats are useful for pasting content into applications such as Notepad, ofprexcel, and ofprword. </para>
2967           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control copies the cells contained in the smallest rectangle that includes all selected cells. Rows and columns that do not contain any selected cells are not represented in the copied data. Any unselected cells in the remaining rows and columns are represented by blank placeholders. Depending on the copy mode and the selection mode, header values for the copied rows and columns may be copied, as well. </para>
2968           <para>When users copy content, the <see cref="T:System.Windows.Forms.DataGridView" /> control adds a <see cref="T:System.Windows.Forms.DataObject" /> to the Clipboard. This data object is retrieved from the <see cref="M:System.Windows.Forms.DataGridView.GetClipboardContent" /> method. You can call this method when you want to programmatically add the data object to the Clipboard.</para>
2969           <para>The <see cref="M:System.Windows.Forms.DataGridView.GetClipboardContent" /> method retrieves values for individual cells by calling the <see cref="M:System.Windows.Forms.DataGridViewCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)" /> method. You can override either or both of these methods in derived classes to customize the layout of copied cells or to support additional data formats. </para>
2970           <para>For more information about Clipboard operations and data formats, see the <see cref="T:System.Windows.Forms.Clipboard" /> class.</para>
2971         </remarks>
2972         <summary>
2973           <attribution license="cc4" from="Microsoft" modified="false" />
2974           <para>Gets or sets a value that indicates whether users can copy cell text values to the <see cref="T:System.Windows.Forms.Clipboard" /> and whether row and column header text is included.</para>
2975         </summary>
2976       </Docs>
2977       <AssemblyInfo>
2978         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2979       </AssemblyInfo>
2980     </Member>
2981     <Member MemberName="ColumnAdded">
2982       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnAdded;" />
2983       <MemberType>Event</MemberType>
2984       <ReturnValue>
2985         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
2986       </ReturnValue>
2987       <Docs>
2988         <since version=".NET 2.0" />
2989         <remarks>
2990           <attribution license="cc4" from="Microsoft" modified="false" />
2991           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
2992         </remarks>
2993         <summary>
2994           <attribution license="cc4" from="Microsoft" modified="false" />
2995           <para>Occurs when a column is added to the control.</para>
2996         </summary>
2997       </Docs>
2998       <AssemblyInfo>
2999         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3000       </AssemblyInfo>
3001     </Member>
3002     <Member MemberName="ColumnContextMenuStripChanged">
3003       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnContextMenuStripChanged;" />
3004       <MemberType>Event</MemberType>
3005       <ReturnValue>
3006         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3007       </ReturnValue>
3008       <Docs>
3009         <since version=".NET 2.0" />
3010         <remarks>
3011           <attribution license="cc4" from="Microsoft" modified="false" />
3012           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
3013         </remarks>
3014         <summary>
3015           <attribution license="cc4" from="Microsoft" modified="false" />
3016           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewColumn.ContextMenuStrip" /> property of a column changes.</para>
3017         </summary>
3018       </Docs>
3019       <AssemblyInfo>
3020         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3021       </AssemblyInfo>
3022     </Member>
3023     <Member MemberName="ColumnCount">
3024       <MemberSignature Language="C#" Value="public int ColumnCount { set; get; }" />
3025       <MemberType>Property</MemberType>
3026       <Attributes>
3027         <Attribute>
3028           <AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName>
3029         </Attribute>
3030         <Attribute>
3031           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
3032         </Attribute>
3033         <Attribute>
3034           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3035         </Attribute>
3036         <Attribute>
3037           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3038         </Attribute>
3039       </Attributes>
3040       <ReturnValue>
3041         <ReturnType>System.Int32</ReturnType>
3042       </ReturnValue>
3043       <Docs>
3044         <value>To be added.</value>
3045         <since version=".NET 2.0" />
3046         <remarks>
3047           <attribution license="cc4" from="Microsoft" modified="false" />
3048           <para>Setting the <see cref="P:System.Windows.Forms.DataGridView.ColumnCount" /> property to 0 will remove all columns from the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
3049           <para>If <see cref="P:System.Windows.Forms.DataGridView.ColumnCount" /> is reset to a value less than the current value, columns will be removed from the end of the <see cref="P:System.Windows.Forms.DataGridView.Columns" /> collection. If <see cref="P:System.Windows.Forms.DataGridView.ColumnCount" /> is set to a value greater than the current value, columns will be added to the end of the <see cref="P:System.Windows.Forms.DataGridView.Columns" /> collection.</para>
3050           <para>This property can be used with the <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> property to create a simple <see cref="T:System.Windows.Forms.DataGridView" /> for displaying and editing text.</para>
3051           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3052         </remarks>
3053         <summary>
3054           <attribution license="cc4" from="Microsoft" modified="false" />
3055           <para>Gets or sets the number of columns displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
3056         </summary>
3057       </Docs>
3058       <AssemblyInfo>
3059         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3060       </AssemblyInfo>
3061     </Member>
3062     <Member MemberName="ColumnDataPropertyNameChanged">
3063       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnDataPropertyNameChanged;" />
3064       <MemberType>Event</MemberType>
3065       <ReturnValue>
3066         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3067       </ReturnValue>
3068       <Docs>
3069         <remarks>To be added.</remarks>
3070         <since version=".NET 2.0" />
3071         <summary>
3072           <attribution license="cc4" from="Microsoft" modified="false" />
3073           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.DataPropertyName" /> property for a column changes.</para>
3074         </summary>
3075       </Docs>
3076       <AssemblyInfo>
3077         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3078       </AssemblyInfo>
3079     </Member>
3080     <Member MemberName="ColumnDefaultCellStyleChanged">
3081       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnDefaultCellStyleChanged;" />
3082       <MemberType>Event</MemberType>
3083       <ReturnValue>
3084         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3085       </ReturnValue>
3086       <Docs>
3087         <since version=".NET 2.0" />
3088         <remarks>
3089           <attribution license="cc4" from="Microsoft" modified="false" />
3090           <para>This event occurs when any properties of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a column is set to a new value or when the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a column is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
3091           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3092         </remarks>
3093         <summary>
3094           <attribution license="cc4" from="Microsoft" modified="false" />
3095           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a column changes.</para>
3096         </summary>
3097       </Docs>
3098       <AssemblyInfo>
3099         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3100       </AssemblyInfo>
3101     </Member>
3102     <Member MemberName="ColumnDisplayIndexChanged">
3103       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnDisplayIndexChanged;" />
3104       <MemberType>Event</MemberType>
3105       <ReturnValue>
3106         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3107       </ReturnValue>
3108       <Docs>
3109         <since version=".NET 2.0" />
3110         <remarks>
3111           <attribution license="cc4" from="Microsoft" modified="false" />
3112           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3113         </remarks>
3114         <summary>
3115           <attribution license="cc4" from="Microsoft" modified="false" />
3116           <para>Occurs when the value the <see cref="P:System.Windows.Forms.DataGridViewColumn.DisplayIndex" /> property for a column changes.</para>
3117         </summary>
3118       </Docs>
3119       <AssemblyInfo>
3120         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3121       </AssemblyInfo>
3122     </Member>
3123     <Member MemberName="ColumnDividerDoubleClick">
3124       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler ColumnDividerDoubleClick;" />
3125       <MemberType>Event</MemberType>
3126       <ReturnValue>
3127         <ReturnType>System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler</ReturnType>
3128       </ReturnValue>
3129       <Docs>
3130         <since version=".NET 2.0" />
3131         <remarks>
3132           <attribution license="cc4" from="Microsoft" modified="false" />
3133           <para>You can use this event to customize the automatic sizing behavior that occurs when a user double-clicks a column divider. For example, you can handle this event to programmatically resize columns based only on the content in the rows that are currently visible, avoiding a performance impact with the default behavior when working with a large number of rows.</para>
3134           <para>The column <see cref="P:System.Windows.Forms.DataGridViewColumn.DividerWidth" /> property does not extend the area in which a user can double-click. If the width of a divider has been increased through the use of this property, this event occurs when the user double-clicks the boundary between the divider and the adjacent column.</para>
3135           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
3136         </remarks>
3137         <summary>
3138           <attribution license="cc4" from="Microsoft" modified="false" />
3139           <para>Occurs when the user double-clicks a divider between two columns.</para>
3140         </summary>
3141       </Docs>
3142       <AssemblyInfo>
3143         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3144       </AssemblyInfo>
3145     </Member>
3146     <Member MemberName="ColumnDividerWidthChanged">
3147       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnDividerWidthChanged;" />
3148       <MemberType>Event</MemberType>
3149       <ReturnValue>
3150         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3151       </ReturnValue>
3152       <Docs>
3153         <since version=".NET 2.0" />
3154         <remarks>
3155           <attribution license="cc4" from="Microsoft" modified="false" />
3156           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
3157         </remarks>
3158         <summary>
3159           <attribution license="cc4" from="Microsoft" modified="false" />
3160           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewColumn.DividerWidth" /> property changes.</para>
3161         </summary>
3162       </Docs>
3163       <AssemblyInfo>
3164         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3165       </AssemblyInfo>
3166     </Member>
3167     <Member MemberName="ColumnHeaderCellChanged">
3168       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnHeaderCellChanged;" />
3169       <MemberType>Event</MemberType>
3170       <ReturnValue>
3171         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3172       </ReturnValue>
3173       <Docs>
3174         <since version=".NET 2.0" />
3175         <remarks>
3176           <attribution license="cc4" from="Microsoft" modified="false" />
3177           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3178         </remarks>
3179         <summary>
3180           <attribution license="cc4" from="Microsoft" modified="false" />
3181           <para>Occurs when the contents of a column header cell change.</para>
3182         </summary>
3183       </Docs>
3184       <AssemblyInfo>
3185         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3186       </AssemblyInfo>
3187     </Member>
3188     <Member MemberName="ColumnHeaderMouseClick">
3189       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler ColumnHeaderMouseClick;" />
3190       <MemberType>Event</MemberType>
3191       <ReturnValue>
3192         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
3193       </ReturnValue>
3194       <Docs>
3195         <since version=".NET 2.0" />
3196         <remarks>
3197           <attribution license="cc4" from="Microsoft" modified="false" />
3198           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3199         </remarks>
3200         <summary>
3201           <attribution license="cc4" from="Microsoft" modified="false" />
3202           <para>Occurs when the user clicks a column header.</para>
3203         </summary>
3204       </Docs>
3205       <AssemblyInfo>
3206         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3207       </AssemblyInfo>
3208     </Member>
3209     <Member MemberName="ColumnHeaderMouseDoubleClick">
3210       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler ColumnHeaderMouseDoubleClick;" />
3211       <MemberType>Event</MemberType>
3212       <ReturnValue>
3213         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
3214       </ReturnValue>
3215       <Docs>
3216         <since version=".NET 2.0" />
3217         <remarks>
3218           <attribution license="cc4" from="Microsoft" modified="false" />
3219           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
3220         </remarks>
3221         <summary>
3222           <attribution license="cc4" from="Microsoft" modified="false" />
3223           <para>Occurs when a column header is double-clicked.</para>
3224         </summary>
3225       </Docs>
3226       <AssemblyInfo>
3227         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3228       </AssemblyInfo>
3229     </Member>
3230     <Member MemberName="ColumnHeadersBorderStyle">
3231       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewHeaderBorderStyle ColumnHeadersBorderStyle { set; get; }" />
3232       <MemberType>Property</MemberType>
3233       <Attributes>
3234         <Attribute>
3235           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewHeaderBorderStyle.Raised)</AttributeName>
3236         </Attribute>
3237         <Attribute>
3238           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
3239         </Attribute>
3240       </Attributes>
3241       <ReturnValue>
3242         <ReturnType>System.Windows.Forms.DataGridViewHeaderBorderStyle</ReturnType>
3243       </ReturnValue>
3244       <Docs>
3245         <value>To be added.</value>
3246         <since version=".NET 2.0" />
3247         <remarks>
3248           <attribution license="cc4" from="Microsoft" modified="false" />
3249           <para>If the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle" /> property is set to anything other than <see cref="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Single" />, the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property must be a system color.</para>
3250           <para>You cannot set this property to the <see cref="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom" /> value, which is a read-only value indicating that the border style has been customized through the use of the <see cref="P:System.Windows.Forms.DataGridView.AdvancedColumnHeadersBorderStyle" /> property.</para>
3251           <block subset="none" type="note">
3252             <para>If visual styles are enabled for the application through the <see cref="M:System.Windows.Forms.Application.EnableVisualStyles" /> method and the <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> property is true, the column headers are painted using the current theme. In this case, the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle" /> property is ignored for all column headers except the <see cref="P:System.Windows.Forms.DataGridView.TopLeftHeaderCell" />, to which the theme is not applied. </para>
3253           </block>
3254         </remarks>
3255         <summary>
3256           <attribution license="cc4" from="Microsoft" modified="false" />
3257           <para>Gets the border style applied to the column headers.</para>
3258         </summary>
3259       </Docs>
3260       <AssemblyInfo>
3261         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3262       </AssemblyInfo>
3263     </Member>
3264     <Member MemberName="ColumnHeadersBorderStyleChanged">
3265       <MemberSignature Language="C#" Value="public event EventHandler ColumnHeadersBorderStyleChanged;" />
3266       <MemberType>Event</MemberType>
3267       <ReturnValue>
3268         <ReturnType>System.EventHandler</ReturnType>
3269       </ReturnValue>
3270       <Docs>
3271         <since version=".NET 2.0" />
3272         <remarks>
3273           <attribution license="cc4" from="Microsoft" modified="false" />
3274           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
3275         </remarks>
3276         <summary>
3277           <attribution license="cc4" from="Microsoft" modified="false" />
3278           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyle" /> property changes.</para>
3279         </summary>
3280       </Docs>
3281       <AssemblyInfo>
3282         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3283       </AssemblyInfo>
3284     </Member>
3285     <Member MemberName="ColumnHeadersDefaultCellStyle">
3286       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCellStyle ColumnHeadersDefaultCellStyle { set; get; }" />
3287       <MemberType>Property</MemberType>
3288       <Attributes>
3289         <Attribute>
3290           <AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName>
3291         </Attribute>
3292       </Attributes>
3293       <ReturnValue>
3294         <ReturnType>System.Windows.Forms.DataGridViewCellStyle</ReturnType>
3295       </ReturnValue>
3296       <Docs>
3297         <value>To be added.</value>
3298         <since version=".NET 2.0" />
3299         <remarks>
3300           <attribution license="cc4" from="Microsoft" modified="false" />
3301           <para>The default <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by this property has the following initial property values:</para>
3302           <list type="table">
3303             <listheader>
3304               <item>
3305                 <term>
3306                   <para>DataGridViewCellStyle property</para>
3307                 </term>
3308                 <description>
3309                   <para>Default value</para>
3310                 </description>
3311               </item>
3312             </listheader>
3313             <item>
3314               <term>
3315                 <para>
3316                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> </para>
3317               </term>
3318               <description>
3319                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.Control" /> property.</para>
3320               </description>
3321             </item>
3322             <item>
3323               <term>
3324                 <para>
3325                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.ForeColor" /> </para>
3326               </term>
3327               <description>
3328                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.WindowText" /> property.</para>
3329               </description>
3330             </item>
3331             <item>
3332               <term>
3333                 <para>
3334                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> </para>
3335               </term>
3336               <description>
3337                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.Highlight" /> property.</para>
3338               </description>
3339             </item>
3340             <item>
3341               <term>
3342                 <para>
3343                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor" /> </para>
3344               </term>
3345               <description>
3346                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.HighlightText" /> property.</para>
3347               </description>
3348             </item>
3349             <item>
3350               <term>
3351                 <para>
3352                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Font" /> </para>
3353               </term>
3354               <description>
3355                 <para>The value of the <see cref="P:System.Windows.Forms.DataGridView.Font" /> property.</para>
3356               </description>
3357             </item>
3358             <item>
3359               <term>
3360                 <para>
3361                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Alignment" /> </para>
3362               </term>
3363               <description>
3364                 <para>
3365                   <see cref="F:System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft" />
3366                 </para>
3367               </description>
3368             </item>
3369             <item>
3370               <term>
3371                 <para>
3372                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> </para>
3373               </term>
3374               <description>
3375                 <para>
3376                   <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />
3377                 </para>
3378               </description>
3379             </item>
3380           </list>
3381           <para>These values automatically override the values set through the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property. To force column headers to inherit the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> values, you must set the values in the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> object to the default values indicated for the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> class.</para>
3382           <para>For more information about cell style inheritance, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
3383           <para>If visual styles are enabled and <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> is set to true, all header cells except the <see cref="P:System.Windows.Forms.DataGridView.TopLeftHeaderCell" /> are painted using the current theme and the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> values are ignored. </para>
3384         </remarks>
3385         <summary>
3386           <attribution license="cc4" from="Microsoft" modified="false" />
3387           <para>Gets or sets the default column header style.</para>
3388         </summary>
3389       </Docs>
3390       <AssemblyInfo>
3391         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3392       </AssemblyInfo>
3393     </Member>
3394     <Member MemberName="ColumnHeadersDefaultCellStyleChanged">
3395       <MemberSignature Language="C#" Value="public event EventHandler ColumnHeadersDefaultCellStyleChanged;" />
3396       <MemberType>Event</MemberType>
3397       <ReturnValue>
3398         <ReturnType>System.EventHandler</ReturnType>
3399       </ReturnValue>
3400       <Docs>
3401         <since version=".NET 2.0" />
3402         <remarks>
3403           <attribution license="cc4" from="Microsoft" modified="false" />
3404           <para>This event occurs when any properties of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> property is set to a new value or when the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> property is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
3405         </remarks>
3406         <summary>
3407           <attribution license="cc4" from="Microsoft" modified="false" />
3408           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" /> property changes.</para>
3409         </summary>
3410       </Docs>
3411       <AssemblyInfo>
3412         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3413       </AssemblyInfo>
3414     </Member>
3415     <Member MemberName="ColumnHeadersHeight">
3416       <MemberSignature Language="C#" Value="public int ColumnHeadersHeight { set; get; }" />
3417       <MemberType>Property</MemberType>
3418       <Attributes>
3419         <Attribute>
3420           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
3421         </Attribute>
3422       </Attributes>
3423       <ReturnValue>
3424         <ReturnType>System.Int32</ReturnType>
3425       </ReturnValue>
3426       <Docs>
3427         <value>To be added.</value>
3428         <remarks>To be added.</remarks>
3429         <since version=".NET 2.0" />
3430         <summary>
3431           <attribution license="cc4" from="Microsoft" modified="false" />
3432           <para>Gets or sets the height, in pixels, of the column headers row </para>
3433         </summary>
3434       </Docs>
3435       <AssemblyInfo>
3436         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3437       </AssemblyInfo>
3438     </Member>
3439     <Member MemberName="ColumnHeadersHeightChanged">
3440       <MemberSignature Language="C#" Value="public event EventHandler ColumnHeadersHeightChanged;" />
3441       <MemberType>Event</MemberType>
3442       <ReturnValue>
3443         <ReturnType>System.EventHandler</ReturnType>
3444       </ReturnValue>
3445       <Docs>
3446         <since version=".NET 2.0" />
3447         <remarks>
3448           <attribution license="cc4" from="Microsoft" modified="false" />
3449           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3450         </remarks>
3451         <summary>
3452           <attribution license="cc4" from="Microsoft" modified="false" />
3453           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeight" /> property changes.</para>
3454         </summary>
3455       </Docs>
3456       <AssemblyInfo>
3457         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3458       </AssemblyInfo>
3459     </Member>
3460     <Member MemberName="ColumnHeadersHeightSizeMode">
3461       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode ColumnHeadersHeightSizeMode { set; get; }" />
3462       <MemberType>Property</MemberType>
3463       <Attributes>
3464         <Attribute>
3465           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.EnableResizing)</AttributeName>
3466         </Attribute>
3467         <Attribute>
3468           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
3469         </Attribute>
3470       </Attributes>
3471       <ReturnValue>
3472         <ReturnType>System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode</ReturnType>
3473       </ReturnValue>
3474       <Docs>
3475         <value>To be added.</value>
3476         <since version=".NET 2.0" />
3477         <remarks>
3478           <attribution license="cc4" from="Microsoft" modified="false" />
3479           <para>When this property is set to <see cref="F:System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize" />, the height of the column headers cannot be adjusted by the user. </para>
3480           <para>To adjust the height of the column headers programmatically, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeColumnHeadersHeight" /> method or set the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeight" /> property. </para>
3481           <para>To set the sizing mode for the row headers, use the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property.</para>
3482           <para>For cell contents to wrap onto multiple lines when the column headers are resized, the cell style in effect for the cell must have a <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />.</para>
3483           <para>For more information about header sizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
3484           <block subset="none" type="note">
3485             <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control does not support double buffering. If <see cref="P:System.Windows.Forms.Control.DoubleBuffered" /> is set to true in a derived <see cref="T:System.Windows.Forms.DataGridView" /> control, users will not receive visual feedback when resizing rows, columns, or headers or when reordering columns.</para>
3486           </block>
3487         </remarks>
3488         <summary>
3489           <attribution license="cc4" from="Microsoft" modified="false" />
3490           <para>Gets or sets a value indicating whether the height of the column headers is adjustable and whether it can be adjusted by the user or is automatically adjusted to fit the contents of the headers. </para>
3491         </summary>
3492       </Docs>
3493       <AssemblyInfo>
3494         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3495       </AssemblyInfo>
3496     </Member>
3497     <Member MemberName="ColumnHeadersHeightSizeModeChanged">
3498       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewAutoSizeModeEventHandler ColumnHeadersHeightSizeModeChanged;" />
3499       <MemberType>Event</MemberType>
3500       <ReturnValue>
3501         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeModeEventHandler</ReturnType>
3502       </ReturnValue>
3503       <Docs>
3504         <since version=".NET 2.0" />
3505         <remarks>
3506           <attribution license="cc4" from="Microsoft" modified="false" />
3507           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3508         </remarks>
3509         <summary>
3510           <attribution license="cc4" from="Microsoft" modified="false" />
3511           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property changes.</para>
3512         </summary>
3513       </Docs>
3514       <AssemblyInfo>
3515         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3516       </AssemblyInfo>
3517     </Member>
3518     <Member MemberName="ColumnHeadersVisible">
3519       <MemberSignature Language="C#" Value="public bool ColumnHeadersVisible { set; get; }" />
3520       <MemberType>Property</MemberType>
3521       <Attributes>
3522         <Attribute>
3523           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
3524         </Attribute>
3525       </Attributes>
3526       <ReturnValue>
3527         <ReturnType>System.Boolean</ReturnType>
3528       </ReturnValue>
3529       <Docs>
3530         <value>To be added.</value>
3531         <since version=".NET 2.0" />
3532         <remarks>
3533           <attribution license="cc4" from="Microsoft" modified="false" />
3534           <para>If the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersVisible" /> property is false, a column whose <see cref="P:System.Windows.Forms.DataGridViewColumn.Resizable" /> property is set to true can still be resized in the user interface (UI) by clicking with the mouse cursor anywhere along the right border of the column to be resized.</para>
3535         </remarks>
3536         <summary>
3537           <attribution license="cc4" from="Microsoft" modified="false" />
3538           <para>Gets or sets a value indicating whether the column header row is displayed.</para>
3539         </summary>
3540       </Docs>
3541       <AssemblyInfo>
3542         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3543       </AssemblyInfo>
3544     </Member>
3545     <Member MemberName="ColumnMinimumWidthChanged">
3546       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnMinimumWidthChanged;" />
3547       <MemberType>Event</MemberType>
3548       <ReturnValue>
3549         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3550       </ReturnValue>
3551       <Docs>
3552         <since version=".NET 2.0" />
3553         <remarks>
3554           <attribution license="cc4" from="Microsoft" modified="false" />
3555           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3556         </remarks>
3557         <summary>
3558           <attribution license="cc4" from="Microsoft" modified="false" />
3559           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.MinimumWidth" /> property for a column changes.</para>
3560         </summary>
3561       </Docs>
3562       <AssemblyInfo>
3563         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3564       </AssemblyInfo>
3565     </Member>
3566     <Member MemberName="ColumnNameChanged">
3567       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnNameChanged;" />
3568       <MemberType>Event</MemberType>
3569       <ReturnValue>
3570         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3571       </ReturnValue>
3572       <Docs>
3573         <since version=".NET 2.0" />
3574         <remarks>
3575           <attribution license="cc4" from="Microsoft" modified="false" />
3576           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3577         </remarks>
3578         <summary>
3579           <attribution license="cc4" from="Microsoft" modified="false" />
3580           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.Name" /> property for a column changes.</para>
3581         </summary>
3582       </Docs>
3583       <AssemblyInfo>
3584         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3585       </AssemblyInfo>
3586     </Member>
3587     <Member MemberName="ColumnRemoved">
3588       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnRemoved;" />
3589       <MemberType>Event</MemberType>
3590       <ReturnValue>
3591         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3592       </ReturnValue>
3593       <Docs>
3594         <since version=".NET 2.0" />
3595         <remarks>
3596           <attribution license="cc4" from="Microsoft" modified="false" />
3597           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
3598         </remarks>
3599         <summary>
3600           <attribution license="cc4" from="Microsoft" modified="false" />
3601           <para>Occurs when a column is removed from the control.</para>
3602         </summary>
3603       </Docs>
3604       <AssemblyInfo>
3605         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3606       </AssemblyInfo>
3607     </Member>
3608     <Member MemberName="Columns">
3609       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewColumnCollection Columns { get; }" />
3610       <MemberType>Property</MemberType>
3611       <Attributes>
3612         <Attribute>
3613           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
3614         </Attribute>
3615         <Attribute>
3616           <AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.DataGridViewColumnCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
3617         </Attribute>
3618         <Attribute>
3619           <AttributeName>System.ComponentModel.MergableProperty(false)</AttributeName>
3620         </Attribute>
3621       </Attributes>
3622       <ReturnValue>
3623         <ReturnType>System.Windows.Forms.DataGridViewColumnCollection</ReturnType>
3624       </ReturnValue>
3625       <Docs>
3626         <value>To be added.</value>
3627         <since version=".NET 2.0" />
3628         <remarks>
3629           <attribution license="cc4" from="Microsoft" modified="false" />
3630           <para>By using the <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" /> returned by this property, you can add columns, remove columns, and obtain a count of the columns contained in the <see cref="T:System.Windows.Forms.DataGridView" /> control. For more information, see <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</para>
3631         </remarks>
3632         <summary>
3633           <attribution license="cc4" from="Microsoft" modified="false" />
3634           <para>Gets a collection that contains all the columns in the control.</para>
3635         </summary>
3636       </Docs>
3637       <AssemblyInfo>
3638         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3639       </AssemblyInfo>
3640     </Member>
3641     <Member MemberName="ColumnSortModeChanged">
3642       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnSortModeChanged;" />
3643       <MemberType>Event</MemberType>
3644       <ReturnValue>
3645         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3646       </ReturnValue>
3647       <Docs>
3648         <since version=".NET 2.0" />
3649         <remarks>
3650           <attribution license="cc4" from="Microsoft" modified="false" />
3651           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3652         </remarks>
3653         <summary>
3654           <attribution license="cc4" from="Microsoft" modified="false" />
3655           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property for a column changes.</para>
3656         </summary>
3657       </Docs>
3658       <AssemblyInfo>
3659         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3660       </AssemblyInfo>
3661     </Member>
3662     <Member MemberName="ColumnStateChanged">
3663       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnStateChangedEventHandler ColumnStateChanged;" />
3664       <MemberType>Event</MemberType>
3665       <ReturnValue>
3666         <ReturnType>System.Windows.Forms.DataGridViewColumnStateChangedEventHandler</ReturnType>
3667       </ReturnValue>
3668       <Docs>
3669         <since version=".NET 2.0" />
3670         <remarks>
3671           <attribution license="cc4" from="Microsoft" modified="false" />
3672           <para>This event is raised when the value of one of the following column properties changes for a <see cref="T:System.Windows.Forms.DataGridViewColumn" /> in the control:</para>
3673           <list type="bullet">
3674             <item>
3675               <para>
3676                 <see cref="P:System.Windows.Forms.DataGridViewBand.Displayed" />
3677               </para>
3678             </item>
3679             <item>
3680               <para>
3681                 <see cref="P:System.Windows.Forms.DataGridViewColumn.Frozen" />
3682               </para>
3683             </item>
3684             <item>
3685               <para>
3686                 <see cref="P:System.Windows.Forms.DataGridViewColumn.ReadOnly" />
3687               </para>
3688             </item>
3689             <item>
3690               <para>
3691                 <see cref="P:System.Windows.Forms.DataGridViewColumn.Resizable" />
3692               </para>
3693             </item>
3694             <item>
3695               <para>
3696                 <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" />
3697               </para>
3698             </item>
3699             <item>
3700               <para>
3701                 <see cref="P:System.Windows.Forms.DataGridViewColumn.Visible" />
3702               </para>
3703             </item>
3704           </list>
3705           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3706         </remarks>
3707         <summary>
3708           <attribution license="cc4" from="Microsoft" modified="false" />
3709           <para>Occurs when a column changes state, such as gaining or losing focus.</para>
3710         </summary>
3711       </Docs>
3712       <AssemblyInfo>
3713         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3714       </AssemblyInfo>
3715     </Member>
3716     <Member MemberName="ColumnToolTipTextChanged">
3717       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnToolTipTextChanged;" />
3718       <MemberType>Event</MemberType>
3719       <ReturnValue>
3720         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3721       </ReturnValue>
3722       <Docs>
3723         <since version=".NET 2.0" />
3724         <remarks>
3725           <attribution license="cc4" from="Microsoft" modified="false" />
3726           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
3727         </remarks>
3728         <summary>
3729           <attribution license="cc4" from="Microsoft" modified="false" />
3730           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewColumn.ToolTipText" /> property value changes for a column in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
3731         </summary>
3732       </Docs>
3733       <AssemblyInfo>
3734         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3735       </AssemblyInfo>
3736     </Member>
3737     <Member MemberName="ColumnWidthChanged">
3738       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewColumnEventHandler ColumnWidthChanged;" />
3739       <MemberType>Event</MemberType>
3740       <ReturnValue>
3741         <ReturnType>System.Windows.Forms.DataGridViewColumnEventHandler</ReturnType>
3742       </ReturnValue>
3743       <Docs>
3744         <since version=".NET 2.0" />
3745         <remarks>
3746           <attribution license="cc4" from="Microsoft" modified="false" />
3747           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3748         </remarks>
3749         <summary>
3750           <attribution license="cc4" from="Microsoft" modified="false" />
3751           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewColumn.Width" /> property for a column changes.</para>
3752         </summary>
3753       </Docs>
3754       <AssemblyInfo>
3755         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3756       </AssemblyInfo>
3757     </Member>
3758     <Member MemberName="CommitEdit">
3759       <MemberSignature Language="C#" Value="public bool CommitEdit (System.Windows.Forms.DataGridViewDataErrorContexts context);" />
3760       <MemberType>Method</MemberType>
3761       <ReturnValue>
3762         <ReturnType>System.Boolean</ReturnType>
3763       </ReturnValue>
3764       <Parameters>
3765         <Parameter Name="context" Type="System.Windows.Forms.DataGridViewDataErrorContexts" />
3766       </Parameters>
3767       <Docs>
3768         <since version=".NET 2.0" />
3769         <remarks>
3770           <attribution license="cc4" from="Microsoft" modified="false" />
3771           <para>This method attempts to convert the formatted, user-specified value to the underlying cell data type. To do this, it raises the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event, which you can handle to customize the type conversion. Otherwise, default type converters are used. Conversion errors may result in an exception if the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event is not handled to prevent it. If the value is successfully converted, it is committed to the data store, raising the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event for non-data-bound cells when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property value is true. If the value is successfully committed, the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event occurs. </para>
3772         </remarks>
3773         <summary>
3774           <attribution license="cc4" from="Microsoft" modified="false" />
3775           <para>Commits changes in the current cell to the data cache without ending edit mode.</para>
3776         </summary>
3777         <returns>
3778           <attribution license="cc4" from="Microsoft" modified="false" />
3779           <para>true if the changes were committed; otherwise false.</para>
3780         </returns>
3781         <param name="context">
3782           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which an error can occur. </param>
3783       </Docs>
3784       <AssemblyInfo>
3785         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3786       </AssemblyInfo>
3787     </Member>
3788     <Member MemberName="CreateAccessibilityInstance">
3789       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.AccessibleObject CreateAccessibilityInstance ();" />
3790       <MemberType>Method</MemberType>
3791       <ReturnValue>
3792         <ReturnType>System.Windows.Forms.AccessibleObject</ReturnType>
3793       </ReturnValue>
3794       <Parameters />
3795       <Docs>
3796         <remarks>To be added.</remarks>
3797         <since version=".NET 2.0" />
3798         <summary>
3799           <attribution license="cc4" from="Microsoft" modified="false" />
3800           <para>Creates a new accessible object for the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
3801         </summary>
3802         <returns>
3803           <attribution license="cc4" from="Microsoft" modified="false" />
3804           <para>A new <see cref="T:System.Windows.Forms.DataGridView.DataGridViewAccessibleObject" /> for the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
3805         </returns>
3806       </Docs>
3807       <AssemblyInfo>
3808         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3809       </AssemblyInfo>
3810     </Member>
3811     <Member MemberName="CreateColumnsInstance">
3812       <MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.DataGridViewColumnCollection CreateColumnsInstance ();" />
3813       <MemberType>Method</MemberType>
3814       <ReturnValue>
3815         <ReturnType>System.Windows.Forms.DataGridViewColumnCollection</ReturnType>
3816       </ReturnValue>
3817       <Parameters />
3818       <Docs>
3819         <remarks>To be added.</remarks>
3820         <since version=".NET 2.0" />
3821         <summary>
3822           <attribution license="cc4" from="Microsoft" modified="false" />
3823           <para>Creates and returns a new <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</para>
3824         </summary>
3825         <returns>
3826           <attribution license="cc4" from="Microsoft" modified="false" />
3827           <para>An empty <see cref="T:System.Windows.Forms.DataGridViewColumnCollection" />.</para>
3828         </returns>
3829       </Docs>
3830       <AssemblyInfo>
3831         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3832       </AssemblyInfo>
3833       <Attributes>
3834         <Attribute>
3835           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3836         </Attribute>
3837       </Attributes>
3838     </Member>
3839     <Member MemberName="CreateControlsInstance">
3840       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.Control.ControlCollection CreateControlsInstance ();" />
3841       <MemberType>Method</MemberType>
3842       <ReturnValue>
3843         <ReturnType>System.Windows.Forms.Control+ControlCollection</ReturnType>
3844       </ReturnValue>
3845       <Parameters />
3846       <Docs>
3847         <since version=".NET 2.0" />
3848         <remarks>
3849           <attribution license="cc4" from="Microsoft" modified="false" />
3850           <para>This method is called by the <see cref="P:System.Windows.Forms.Control.Controls" /> property to initialize its value. </para>
3851         </remarks>
3852         <summary>
3853           <attribution license="cc4" from="Microsoft" modified="false" />
3854           <para>Creates and returns a new <see cref="T:System.Windows.Forms.Control.ControlCollection" /> that can be cast to type <see cref="T:System.Windows.Forms.DataGridView.DataGridViewControlCollection" />.</para>
3855         </summary>
3856         <returns>
3857           <attribution license="cc4" from="Microsoft" modified="false" />
3858           <para>An empty <see cref="T:System.Windows.Forms.Control.ControlCollection" />.</para>
3859         </returns>
3860       </Docs>
3861       <AssemblyInfo>
3862         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3863       </AssemblyInfo>
3864     </Member>
3865     <Member MemberName="CreateRowsInstance">
3866       <MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.DataGridViewRowCollection CreateRowsInstance ();" />
3867       <MemberType>Method</MemberType>
3868       <ReturnValue>
3869         <ReturnType>System.Windows.Forms.DataGridViewRowCollection</ReturnType>
3870       </ReturnValue>
3871       <Parameters />
3872       <Docs>
3873         <remarks>To be added.</remarks>
3874         <since version=".NET 2.0" />
3875         <summary>
3876           <attribution license="cc4" from="Microsoft" modified="false" />
3877           <para>Creates and returns a new <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</para>
3878         </summary>
3879         <returns>
3880           <attribution license="cc4" from="Microsoft" modified="false" />
3881           <para>An empty <see cref="T:System.Windows.Forms.DataGridViewRowCollection" />.</para>
3882         </returns>
3883       </Docs>
3884       <AssemblyInfo>
3885         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3886       </AssemblyInfo>
3887       <Attributes>
3888         <Attribute>
3889           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3890         </Attribute>
3891       </Attributes>
3892     </Member>
3893     <Member MemberName="CurrentCell">
3894       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCell CurrentCell { set; get; }" />
3895       <MemberType>Property</MemberType>
3896       <Attributes>
3897         <Attribute>
3898           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
3899         </Attribute>
3900         <Attribute>
3901           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3902         </Attribute>
3903       </Attributes>
3904       <ReturnValue>
3905         <ReturnType>System.Windows.Forms.DataGridViewCell</ReturnType>
3906       </ReturnValue>
3907       <Docs>
3908         <value>To be added.</value>
3909         <since version=".NET 2.0" />
3910         <remarks>
3911           <attribution license="cc4" from="Microsoft" modified="false" />
3912           <para>When you set a cell as the current cell, it will scroll into view if it is not currently displayed. The current cell cannot be a header cell, a disabled cell, or a cell in a hidden row or column. </para>
3913           <para>You can set this property to null to temporarily remove the focus rectangle, but when the control receives focus and the value of this property is null, it is automatically set to the value of the <see cref="P:System.Windows.Forms.DataGridView.FirstDisplayedCell" /> property. </para>
3914           <para>When you change the value of this property, the <see cref="E:System.Windows.Forms.DataGridView.SelectionChanged" /> event occurs before the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellChanged" /> event. Any <see cref="E:System.Windows.Forms.DataGridView.SelectionChanged" /> event handler accessing the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property at this time will get its previous value. </para>
3915           <para>When you bind the <see cref="T:System.Windows.Forms.DataGridView" /> to an external data source, this property is reset to its default value.</para>
3916         </remarks>
3917         <summary>
3918           <attribution license="cc4" from="Microsoft" modified="false" />
3919           <para>Gets or sets the currently active cell.</para>
3920         </summary>
3921       </Docs>
3922       <AssemblyInfo>
3923         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3924       </AssemblyInfo>
3925     </Member>
3926     <Member MemberName="CurrentCellAddress">
3927       <MemberSignature Language="C#" Value="public System.Drawing.Point CurrentCellAddress { get; }" />
3928       <MemberType>Property</MemberType>
3929       <Attributes>
3930         <Attribute>
3931           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
3932         </Attribute>
3933       </Attributes>
3934       <ReturnValue>
3935         <ReturnType>System.Drawing.Point</ReturnType>
3936       </ReturnValue>
3937       <Docs>
3938         <value>To be added.</value>
3939         <since version=".NET 2.0" />
3940         <remarks>
3941           <attribution license="cc4" from="Microsoft" modified="false" />
3942           <para>Use this property to determine the row and column of the current cell without accessing the cell directly. This is useful to avoid unsharing shared rows. For more information about row sharing, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
3943         </remarks>
3944         <summary>
3945           <attribution license="cc4" from="Microsoft" modified="false" />
3946           <para>Gets the row and column indexes of the currently active cell.</para>
3947         </summary>
3948       </Docs>
3949       <AssemblyInfo>
3950         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3951       </AssemblyInfo>
3952     </Member>
3953     <Member MemberName="CurrentCellChanged">
3954       <MemberSignature Language="C#" Value="public event EventHandler CurrentCellChanged;" />
3955       <MemberType>Event</MemberType>
3956       <ReturnValue>
3957         <ReturnType>System.EventHandler</ReturnType>
3958       </ReturnValue>
3959       <Docs>
3960         <since version=".NET 2.0" />
3961         <remarks>
3962           <attribution license="cc4" from="Microsoft" modified="false" />
3963           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
3964         </remarks>
3965         <summary>
3966           <attribution license="cc4" from="Microsoft" modified="false" />
3967           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property changes.</para>
3968         </summary>
3969       </Docs>
3970       <AssemblyInfo>
3971         <AssemblyVersion>2.0.0.0</AssemblyVersion>
3972       </AssemblyInfo>
3973     </Member>
3974     <Member MemberName="CurrentCellDirtyStateChanged">
3975       <MemberSignature Language="C#" Value="public event EventHandler CurrentCellDirtyStateChanged;" />
3976       <MemberType>Event</MemberType>
3977       <Attributes>
3978         <Attribute>
3979           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
3980         </Attribute>
3981       </Attributes>
3982       <ReturnValue>
3983         <ReturnType>System.EventHandler</ReturnType>
3984       </ReturnValue>
3985       <Docs>
3986         <since version=".NET 2.0" />
3987         <remarks>
3988           <attribution license="cc4" from="Microsoft" modified="false" />
3989           <para>A cell is marked as modified if its contents have changed but the change has not been saved.</para>
3990           <para>This event typically occurs when a cell has been edited but the change has not been committed to the data cache, or when an edit operation is canceled.</para>
3991           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
3992         </remarks>
3993         <summary>
3994           <attribution license="cc4" from="Microsoft" modified="false" />
3995           <para>Occurs when the state of a cell changes in relation to a change in its contents.</para>
3996         </summary>
3997       </Docs>
3998       <AssemblyInfo>
3999         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4000       </AssemblyInfo>
4001     </Member>
4002     <Member MemberName="CurrentRow">
4003       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewRow CurrentRow { get; }" />
4004       <MemberType>Property</MemberType>
4005       <Attributes>
4006         <Attribute>
4007           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4008         </Attribute>
4009       </Attributes>
4010       <ReturnValue>
4011         <ReturnType>System.Windows.Forms.DataGridViewRow</ReturnType>
4012       </ReturnValue>
4013       <Docs>
4014         <value>To be added.</value>
4015         <since version=".NET 2.0" />
4016         <remarks>
4017           <attribution license="cc4" from="Microsoft" modified="false" />
4018           <para>To change the current row, you must set the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property to a cell in the desired row.</para>
4019         </remarks>
4020         <summary>
4021           <attribution license="cc4" from="Microsoft" modified="false" />
4022           <para>Gets the row containing the current cell.</para>
4023         </summary>
4024       </Docs>
4025       <AssemblyInfo>
4026         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4027       </AssemblyInfo>
4028     </Member>
4029     <Member MemberName="DataBindingComplete">
4030       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewBindingCompleteEventHandler DataBindingComplete;" />
4031       <MemberType>Event</MemberType>
4032       <ReturnValue>
4033         <ReturnType>System.Windows.Forms.DataGridViewBindingCompleteEventHandler</ReturnType>
4034       </ReturnValue>
4035       <Docs>
4036         <since version=".NET 2.0" />
4037         <remarks>
4038           <attribution license="cc4" from="Microsoft" modified="false" />
4039           <para>This event is raised when the contents of the data source change or when the value of the <see cref="P:System.Windows.Forms.DataGridView.DataSource" />, <see cref="P:System.Windows.Forms.DataGridView.DataMember" />, or <see cref="P:System.Windows.Forms.Control.BindingContext" /> property changes. </para>
4040           <para>Handling this event is useful, for example, to programmatically resize rows and columns based on content updates. For more information, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
4041           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
4042         </remarks>
4043         <summary>
4044           <attribution license="cc4" from="Microsoft" modified="false" />
4045           <para>Occurs after a data-binding operation has finished.</para>
4046         </summary>
4047       </Docs>
4048       <AssemblyInfo>
4049         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4050       </AssemblyInfo>
4051     </Member>
4052     <Member MemberName="DataError">
4053       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewDataErrorEventHandler DataError;" />
4054       <MemberType>Event</MemberType>
4055       <ReturnValue>
4056         <ReturnType>System.Windows.Forms.DataGridViewDataErrorEventHandler</ReturnType>
4057       </ReturnValue>
4058       <Docs>
4059         <since version=".NET 2.0" />
4060         <remarks>
4061           <attribution license="cc4" from="Microsoft" modified="false" />
4062           <para>The <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event enables you to handle exceptions thrown in code that is called by the control during data processing operations. </para>
4063           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
4064           <block subset="none" type="note">
4065             <para>The <see cref="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex" /> and <see cref="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.RowIndex" /> properties of the <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventArgs" /> object associated with this event normally indicate the cell in which the data error occurred. When the error occurs in an external data source, however, the data source may not provide the column in which the error occurred. In this case, the <see cref="P:System.Windows.Forms.DataGridViewCellCancelEventArgs.ColumnIndex" /> property typically indicates the column of the current cell at the time of the error. </para>
4066           </block>
4067         </remarks>
4068         <summary>
4069           <attribution license="cc4" from="Microsoft" modified="false" />
4070           <para>Occurs when an external data-parsing or validation operation throws an exception, or when an attempt to commit data to a data source fails.</para>
4071         </summary>
4072       </Docs>
4073       <AssemblyInfo>
4074         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4075       </AssemblyInfo>
4076     </Member>
4077     <Member MemberName="DataMember">
4078       <MemberSignature Language="C#" Value="public string DataMember { set; get; }" />
4079       <MemberType>Property</MemberType>
4080       <Attributes>
4081         <Attribute>
4082           <AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.DataMemberListEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
4083         </Attribute>
4084         <Attribute>
4085           <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
4086         </Attribute>
4087       </Attributes>
4088       <ReturnValue>
4089         <ReturnType>System.String</ReturnType>
4090       </ReturnValue>
4091       <Docs>
4092         <value>To be added.</value>
4093         <since version=".NET 2.0" />
4094         <remarks>
4095           <attribution license="cc4" from="Microsoft" modified="false" />
4096           <para>This property is useful when binding to a data source that contains multiple lists or tables. You do not need to set this property when binding to a data source that contains a single list or table. For example, you can bind a <see cref="T:System.Windows.Forms.DataGridView" /> control to a <see cref="T:System.Data.DataSet" /> that contains a single table without setting this property. If the <see cref="T:System.Data.DataSet" /> contains multiple tables, however, you must set this property to the name of one of the tables. </para>
4097         </remarks>
4098         <summary>
4099           <attribution license="cc4" from="Microsoft" modified="false" />
4100           <para>Gets or sets the name of the list or table in the data source for which the <see cref="T:System.Windows.Forms.DataGridView" /> is displaying data.</para>
4101         </summary>
4102       </Docs>
4103       <AssemblyInfo>
4104         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4105       </AssemblyInfo>
4106     </Member>
4107     <Member MemberName="DataMemberChanged">
4108       <MemberSignature Language="C#" Value="public event EventHandler DataMemberChanged;" />
4109       <MemberType>Event</MemberType>
4110       <ReturnValue>
4111         <ReturnType>System.EventHandler</ReturnType>
4112       </ReturnValue>
4113       <Docs>
4114         <since version=".NET 2.0" />
4115         <remarks>
4116           <attribution license="cc4" from="Microsoft" modified="false" />
4117           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
4118         </remarks>
4119         <summary>
4120           <attribution license="cc4" from="Microsoft" modified="false" />
4121           <para>Occurs when value of the <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> property changes.</para>
4122         </summary>
4123       </Docs>
4124       <AssemblyInfo>
4125         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4126       </AssemblyInfo>
4127     </Member>
4128     <Member MemberName="DataSource">
4129       <MemberSignature Language="C#" Value="public object DataSource { set; get; }" />
4130       <MemberType>Property</MemberType>
4131       <Attributes>
4132         <Attribute>
4133           <AttributeName>System.ComponentModel.AttributeProvider(typeof(System.ComponentModel.IListSource))</AttributeName>
4134         </Attribute>
4135         <Attribute>
4136           <AttributeName>System.ComponentModel.DefaultValue(null)</AttributeName>
4137         </Attribute>
4138         <Attribute>
4139           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)</AttributeName>
4140         </Attribute>
4141       </Attributes>
4142       <ReturnValue>
4143         <ReturnType>System.Object</ReturnType>
4144       </ReturnValue>
4145       <Docs>
4146         <value>To be added.</value>
4147         <since version=".NET 2.0" />
4148         <remarks>
4149           <attribution license="cc4" from="Microsoft" modified="false" />
4150           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> class supports the standard Windows Forms data-binding model. This means the data source can be of any type that implements one of the following interfaces:</para>
4151           <list type="bullet">
4152             <item>
4153               <para>The <see cref="T:System.Collections.IList" /> interface, including one-dimensional arrays.</para>
4154             </item>
4155             <item>
4156               <para>The <see cref="T:System.ComponentModel.IListSource" /> interface, such as the <see cref="T:System.Data.DataTable" /> and <see cref="T:System.Data.DataSet" /> classes.</para>
4157             </item>
4158             <item>
4159               <para>The <see cref="T:System.ComponentModel.IBindingList" /> interface, such as the <see cref="T:System.ComponentModel.BindingList`1" /> class.</para>
4160             </item>
4161             <item>
4162               <para>The <see cref="T:System.ComponentModel.IBindingListView" /> interface, such as the <see cref="T:System.Windows.Forms.BindingSource" /> class.</para>
4163             </item>
4164           </list>
4165           <para>For specific examples, see the Example section and the task table at the end of this section. </para>
4166           <para>Typically, you will bind to a <see cref="T:System.Windows.Forms.BindingSource" /> component and bind the <see cref="T:System.Windows.Forms.BindingSource" /> component to another data source or populate it with business objects. The <see cref="T:System.Windows.Forms.BindingSource" /> component is the preferred data source because it can bind to a wide variety of data sources and can resolve many data binding issues automatically. </para>
4167           <para>When binding to a data source that contains multiple lists or tables, you must set the <see cref="P:System.Windows.Forms.DataGridView.DataMember" /> property to a string that specifies the list or table to bind to. When binding to a <see cref="T:System.Windows.Forms.BindingSource" /> component that contains multiple lists or tables, however, you can set the <see cref="P:System.Windows.Forms.BindingSource.DataMember" /> property of the <see cref="T:System.Windows.Forms.BindingSource" /> component instead.</para>
4168           <para>When binding to an object collection rather than to database data, you will typically set the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.DataSourceNullValue" /> property of the object returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property to null rather than using the default value of <see cref="F:System.DBNull.Value" />, which is appropriate for database data.</para>
4169           <para>For more information, see <format type="text/html"><a href="b170b52a-2ebd-4948-ac2f-e52d494cebb2">Displaying Data in the Windows Forms DataGridView Control</a></format>. The following table provides direct links to common tasks related to the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property.</para>
4170           <para>
4171             <dynamicLink>
4172               <keyword>dgv_datasource_tasks</keyword>
4173             </dynamicLink>
4174           </para>
4175         </remarks>
4176         <summary>
4177           <attribution license="cc4" from="Microsoft" modified="false" />
4178           <para>Gets or sets the data source that the <see cref="T:System.Windows.Forms.DataGridView" /> is displaying data for.</para>
4179         </summary>
4180       </Docs>
4181       <AssemblyInfo>
4182         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4183       </AssemblyInfo>
4184     </Member>
4185     <Member MemberName="DataSourceChanged">
4186       <MemberSignature Language="C#" Value="public event EventHandler DataSourceChanged;" />
4187       <MemberType>Event</MemberType>
4188       <ReturnValue>
4189         <ReturnType>System.EventHandler</ReturnType>
4190       </ReturnValue>
4191       <Docs>
4192         <since version=".NET 2.0" />
4193         <remarks>
4194           <attribution license="cc4" from="Microsoft" modified="false" />
4195           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
4196         </remarks>
4197         <summary>
4198           <attribution license="cc4" from="Microsoft" modified="false" />
4199           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property changes.</para>
4200         </summary>
4201       </Docs>
4202       <AssemblyInfo>
4203         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4204       </AssemblyInfo>
4205     </Member>
4206     <Member MemberName="DefaultCellStyle">
4207       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCellStyle DefaultCellStyle { set; get; }" />
4208       <MemberType>Property</MemberType>
4209       <Attributes>
4210         <Attribute>
4211           <AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName>
4212         </Attribute>
4213       </Attributes>
4214       <ReturnValue>
4215         <ReturnType>System.Windows.Forms.DataGridViewCellStyle</ReturnType>
4216       </ReturnValue>
4217       <Docs>
4218         <value>To be added.</value>
4219         <since version=".NET 2.0" />
4220         <remarks>
4221           <attribution license="cc4" from="Microsoft" modified="false" />
4222           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control displays its cells using the styles indicated by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property, which inherits styles from other properties of type <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />. The styles specified through the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property affect all cells except when overridden by the styles specified through the following properties:</para>
4223           <list type="bullet">
4224             <item>
4225               <para>
4226                 <see cref="P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle" />
4227               </para>
4228             </item>
4229             <item>
4230               <para>
4231                 <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" />
4232               </para>
4233             </item>
4234             <item>
4235               <para>
4236                 <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" />
4237               </para>
4238             </item>
4239             <item>
4240               <para>
4241                 <see cref="P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle" />
4242               </para>
4243             </item>
4244             <item>
4245               <para>
4246                 <see cref="P:System.Windows.Forms.DataGridViewCell.Style" />
4247               </para>
4248             </item>
4249           </list>
4250           <para>For more information, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
4251           <para>When getting this property, a <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with default values will be created if the property has not already been accessed. This can cause a performance impact when getting this property for many rows. Whenever possible, use a single <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to set this property for multiple rows. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
4252         </remarks>
4253         <summary>
4254           <attribution license="cc4" from="Microsoft" modified="false" />
4255           <para>Gets or sets the default cell style to be applied to the cells in the <see cref="T:System.Windows.Forms.DataGridView" /> if no other cell style properties are set.</para>
4256         </summary>
4257       </Docs>
4258       <AssemblyInfo>
4259         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4260       </AssemblyInfo>
4261     </Member>
4262     <Member MemberName="DefaultCellStyleChanged">
4263       <MemberSignature Language="C#" Value="public event EventHandler DefaultCellStyleChanged;" />
4264       <MemberType>Event</MemberType>
4265       <ReturnValue>
4266         <ReturnType>System.EventHandler</ReturnType>
4267       </ReturnValue>
4268       <Docs>
4269         <since version=".NET 2.0" />
4270         <remarks>
4271           <attribution license="cc4" from="Microsoft" modified="false" />
4272           <para>This event occurs when any properties of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property are set to new values or when the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
4273           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
4274         </remarks>
4275         <summary>
4276           <attribution license="cc4" from="Microsoft" modified="false" />
4277           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property changes.</para>
4278         </summary>
4279       </Docs>
4280       <AssemblyInfo>
4281         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4282       </AssemblyInfo>
4283     </Member>
4284     <Member MemberName="DefaultSize">
4285       <MemberSignature Language="C#" Value="protected override System.Drawing.Size DefaultSize { get; }" />
4286       <MemberType>Property</MemberType>
4287       <ReturnValue>
4288         <ReturnType>System.Drawing.Size</ReturnType>
4289       </ReturnValue>
4290       <Docs>
4291         <value>To be added.</value>
4292         <remarks>To be added.</remarks>
4293         <since version=".NET 2.0" />
4294         <summary>
4295           <attribution license="cc4" from="Microsoft" modified="false" />
4296           <para>Gets the default initial size of the control.</para>
4297         </summary>
4298       </Docs>
4299       <AssemblyInfo>
4300         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4301       </AssemblyInfo>
4302     </Member>
4303     <Member MemberName="DefaultValuesNeeded">
4304       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler DefaultValuesNeeded;" />
4305       <MemberType>Event</MemberType>
4306       <Attributes>
4307         <Attribute>
4308           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4309         </Attribute>
4310       </Attributes>
4311       <ReturnValue>
4312         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
4313       </ReturnValue>
4314       <Docs>
4315         <since version=".NET 2.0" />
4316         <remarks>
4317           <attribution license="cc4" from="Microsoft" modified="false" />
4318           <para>This event lets you populate the row for new records when the user enters the row. Initial values for the row come from the <see cref="P:System.Windows.Forms.DataGridViewCell.DefaultNewRowValue" /> property of the <see cref="T:System.Windows.Forms.DataGridViewCell" /> returned by each column's <see cref="P:System.Windows.Forms.DataGridViewColumn.CellTemplate" /> property.</para>
4319           <para>In data bound mode, all cell values for data bound columns are stored in the external data source. When the user enters the row for new records, a new row is created in the data source before the <see cref="E:System.Windows.Forms.DataGridView.DefaultValuesNeeded" /> event occurs. When you populate the <see cref="P:System.Windows.Forms.DataGridViewRowEventArgs.Row" /> property in your event handler, the values are added directly to the data source.</para>
4320           <para>In virtual mode, after this event occurs, the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event occurs for each cell in the new row so that you can store the default values in your custom data store. Then, the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event occurs for each cell in the new row, retrieving the values that you stored in the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event, which are then displayed. </para>
4321           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
4322         </remarks>
4323         <summary>
4324           <attribution license="cc4" from="Microsoft" modified="false" />
4325           <para>Occurs when the user enters the row for new records so that it can be populated with default values.</para>
4326         </summary>
4327       </Docs>
4328       <AssemblyInfo>
4329         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4330       </AssemblyInfo>
4331     </Member>
4332     <Member MemberName="DisplayedColumnCount">
4333       <MemberSignature Language="C#" Value="public int DisplayedColumnCount (bool includePartialColumns);" />
4334       <MemberType>Method</MemberType>
4335       <ReturnValue>
4336         <ReturnType>System.Int32</ReturnType>
4337       </ReturnValue>
4338       <Parameters>
4339         <Parameter Name="includePartialColumns" Type="System.Boolean" />
4340       </Parameters>
4341       <Docs>
4342         <remarks>To be added.</remarks>
4343         <since version=".NET 2.0" />
4344         <summary>
4345           <attribution license="cc4" from="Microsoft" modified="false" />
4346           <para>Returns the number of columns displayed to the user.</para>
4347         </summary>
4348         <returns>
4349           <attribution license="cc4" from="Microsoft" modified="false" />
4350           <para>The number of columns displayed to the user.</para>
4351         </returns>
4352         <param name="includePartialColumns">
4353           <attribution license="cc4" from="Microsoft" modified="false" />true to include partial columns in the displayed column count; otherwise, false. </param>
4354       </Docs>
4355       <AssemblyInfo>
4356         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4357       </AssemblyInfo>
4358     </Member>
4359     <Member MemberName="DisplayedRowCount">
4360       <MemberSignature Language="C#" Value="public int DisplayedRowCount (bool includePartialRow);" />
4361       <MemberType>Method</MemberType>
4362       <ReturnValue>
4363         <ReturnType>System.Int32</ReturnType>
4364       </ReturnValue>
4365       <Parameters>
4366         <Parameter Name="includePartialRow" Type="System.Boolean" />
4367       </Parameters>
4368       <Docs>
4369         <remarks>To be added.</remarks>
4370         <since version=".NET 2.0" />
4371         <summary>
4372           <attribution license="cc4" from="Microsoft" modified="false" />
4373           <para>Returns the number of rows displayed to the user.</para>
4374         </summary>
4375         <returns>
4376           <attribution license="cc4" from="Microsoft" modified="false" />
4377           <para>The number of rows displayed to the user.</para>
4378         </returns>
4379         <param name="includePartialRow">
4380           <attribution license="cc4" from="Microsoft" modified="false" />true to include partial rows in the displayed row count; otherwise, false. </param>
4381       </Docs>
4382       <AssemblyInfo>
4383         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4384       </AssemblyInfo>
4385     </Member>
4386     <Member MemberName="DisplayRectangle">
4387       <MemberSignature Language="C#" Value="public override System.Drawing.Rectangle DisplayRectangle { get; }" />
4388       <MemberType>Property</MemberType>
4389       <ReturnValue>
4390         <ReturnType>System.Drawing.Rectangle</ReturnType>
4391       </ReturnValue>
4392       <Docs>
4393         <value>To be added.</value>
4394         <since version=".NET 2.0" />
4395         <remarks>
4396           <attribution license="cc4" from="Microsoft" modified="false" />
4397           <para>The <see cref="P:System.Windows.Forms.DataGridView.DisplayRectangle" /> property returns the client rectangle of the display area of the control, not including the area occupied by any scroll bars that are showing. </para>
4398         </remarks>
4399         <summary>
4400           <attribution license="cc4" from="Microsoft" modified="false" />
4401           <para>Gets the rectangle that represents the display area of the control.</para>
4402         </summary>
4403       </Docs>
4404       <AssemblyInfo>
4405         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4406       </AssemblyInfo>
4407     </Member>
4408     <Member MemberName="Dispose">
4409       <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
4410       <MemberType>Method</MemberType>
4411       <ReturnValue>
4412         <ReturnType>System.Void</ReturnType>
4413       </ReturnValue>
4414       <Parameters>
4415         <Parameter Name="disposing" Type="System.Boolean" />
4416       </Parameters>
4417       <Docs>
4418         <param name="disposing">To be added.</param>
4419         <summary>To be added.</summary>
4420         <remarks>To be added.</remarks>
4421         <since version=".NET 2.0" />
4422       </Docs>
4423       <AssemblyInfo>
4424         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4425       </AssemblyInfo>
4426     </Member>
4427     <Member MemberName="EditingControl">
4428       <MemberSignature Language="C#" Value="public System.Windows.Forms.Control EditingControl { get; }" />
4429       <MemberType>Property</MemberType>
4430       <Attributes>
4431         <Attribute>
4432           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4433         </Attribute>
4434         <Attribute>
4435           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4436         </Attribute>
4437       </Attributes>
4438       <ReturnValue>
4439         <ReturnType>System.Windows.Forms.Control</ReturnType>
4440       </ReturnValue>
4441       <Docs>
4442         <value>To be added.</value>
4443         <since version=".NET 2.0" />
4444         <remarks>
4445           <attribution license="cc4" from="Microsoft" modified="false" />
4446           <para>If the cell is not in edit mode or the cell type does not accommodate an editing control, this property returns null.</para>
4447         </remarks>
4448         <summary>
4449           <attribution license="cc4" from="Microsoft" modified="false" />
4450           <para>Gets the control hosted by the current cell, if a cell with an editing control is in edit mode.</para>
4451         </summary>
4452       </Docs>
4453       <AssemblyInfo>
4454         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4455       </AssemblyInfo>
4456     </Member>
4457     <Member MemberName="EditingControlShowing">
4458       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewEditingControlShowingEventHandler EditingControlShowing;" />
4459       <MemberType>Event</MemberType>
4460       <ReturnValue>
4461         <ReturnType>System.Windows.Forms.DataGridViewEditingControlShowingEventHandler</ReturnType>
4462       </ReturnValue>
4463       <Docs>
4464         <since version=".NET 2.0" />
4465         <remarks>
4466           <attribution license="cc4" from="Microsoft" modified="false" />
4467           <para>You can handle this event to perform custom initialization of the editing control when a cell enters edit mode. To customize the display characteristics of the control, set the properties of the object returned by the <see cref="P:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.CellStyle" /> property. To perform other initialization, cast the value of the <see cref="P:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs.Control" /> property to the specific control type and access the members directly. For example, you can handle the <see cref="E:System.Windows.Forms.DataGridView.EditingControlShowing" /> event to attach event-handlers to the events of the editing control. </para>
4468           <block subset="none" type="note">
4469             <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control hosts one editing control at a time, and reuses the editing control whenever the cell type does not change between edits. When attaching event-handlers to the editing control, you must therefore take precautions to avoid attaching the same handler multiple times. To avoid this problem, remove the handler from the event before you attach the handler to the event. This will prevent duplication if the handler is already attached to the event, but will have no effect otherwise. For more information, see the example code in the <see cref="T:System.Windows.Forms.DataGridViewComboBoxEditingControl" /> class overview. </para>
4470           </block>
4471           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
4472         </remarks>
4473         <summary>
4474           <attribution license="cc4" from="Microsoft" modified="false" />
4475           <para>Occurs when a control for editing a cell is showing.</para>
4476         </summary>
4477       </Docs>
4478       <AssemblyInfo>
4479         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4480       </AssemblyInfo>
4481     </Member>
4482     <Member MemberName="EditingPanel">
4483       <MemberSignature Language="C#" Value="public System.Windows.Forms.Panel EditingPanel { get; }" />
4484       <MemberType>Property</MemberType>
4485       <Attributes>
4486         <Attribute>
4487           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4488         </Attribute>
4489         <Attribute>
4490           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4491         </Attribute>
4492       </Attributes>
4493       <ReturnValue>
4494         <ReturnType>System.Windows.Forms.Panel</ReturnType>
4495       </ReturnValue>
4496       <Docs>
4497         <value>To be added.</value>
4498         <since version=".NET 2.0" />
4499         <remarks>
4500           <attribution license="cc4" from="Microsoft" modified="false" />
4501           <para>Unlike the <see cref="P:System.Windows.Forms.DataGridView.EditingControl" /> property, which is null when the current cell is not in edit mode, the <see cref="P:System.Windows.Forms.DataGridView.EditingPanel" /> property is always available.</para>
4502         </remarks>
4503         <summary>
4504           <attribution license="cc4" from="Microsoft" modified="false" />
4505           <para>Gets the panel that contains the <see cref="P:System.Windows.Forms.DataGridView.EditingControl" />.</para>
4506         </summary>
4507       </Docs>
4508       <AssemblyInfo>
4509         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4510       </AssemblyInfo>
4511     </Member>
4512     <Member MemberName="EditMode">
4513       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewEditMode EditMode { set; get; }" />
4514       <MemberType>Property</MemberType>
4515       <Attributes>
4516         <Attribute>
4517           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewEditMode.EditOnKeystrokeOrF2)</AttributeName>
4518         </Attribute>
4519       </Attributes>
4520       <ReturnValue>
4521         <ReturnType>System.Windows.Forms.DataGridViewEditMode</ReturnType>
4522       </ReturnValue>
4523       <Docs>
4524         <value>To be added.</value>
4525         <since version=".NET 2.0" />
4526         <remarks>
4527           <attribution license="cc4" from="Microsoft" modified="false" />
4528           <para>All <see cref="T:System.Windows.Forms.DataGridViewEditMode" /> values except for <see cref="F:System.Windows.Forms.DataGridViewEditMode.EditProgrammatically" /> also allow a user to double-click a cell to begin editing it.</para>
4529         </remarks>
4530         <summary>
4531           <attribution license="cc4" from="Microsoft" modified="false" />
4532           <para>Gets or sets a value indicating how to begin editing a cell.</para>
4533         </summary>
4534       </Docs>
4535       <AssemblyInfo>
4536         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4537       </AssemblyInfo>
4538     </Member>
4539     <Member MemberName="EditModeChanged">
4540       <MemberSignature Language="C#" Value="public event EventHandler EditModeChanged;" />
4541       <MemberType>Event</MemberType>
4542       <ReturnValue>
4543         <ReturnType>System.EventHandler</ReturnType>
4544       </ReturnValue>
4545       <Docs>
4546         <since version=".NET 2.0" />
4547         <remarks>
4548           <attribution license="cc4" from="Microsoft" modified="false" />
4549           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
4550         </remarks>
4551         <summary>
4552           <attribution license="cc4" from="Microsoft" modified="false" />
4553           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.EditMode" /> property changes.</para>
4554         </summary>
4555       </Docs>
4556       <AssemblyInfo>
4557         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4558       </AssemblyInfo>
4559     </Member>
4560     <Member MemberName="EnableHeadersVisualStyles">
4561       <MemberSignature Language="C#" Value="public bool EnableHeadersVisualStyles { set; get; }" />
4562       <MemberType>Property</MemberType>
4563       <Attributes>
4564         <Attribute>
4565           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
4566         </Attribute>
4567       </Attributes>
4568       <ReturnValue>
4569         <ReturnType>System.Boolean</ReturnType>
4570       </ReturnValue>
4571       <Docs>
4572         <value>To be added.</value>
4573         <since version=".NET 2.0" />
4574         <remarks>
4575           <attribution license="cc4" from="Microsoft" modified="false" />
4576           <para>You can enable visual styles for your application by calling the <see cref="M:System.Windows.Forms.Application.EnableVisualStyles" /> method before calling the <see cref="Overload:System.Windows.Forms.Application.Run" /> method. If <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> is set to true, all header cells except the <see cref="P:System.Windows.Forms.DataGridView.TopLeftHeaderCell" /> are painted using the current theme. </para>
4577         </remarks>
4578         <summary>
4579           <attribution license="cc4" from="Microsoft" modified="false" />
4580           <para>Gets or sets a value indicating whether row and column headers use the visual styles of the user's current theme if visual styles are enabled for the application.</para>
4581         </summary>
4582       </Docs>
4583       <AssemblyInfo>
4584         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4585       </AssemblyInfo>
4586     </Member>
4587     <Member MemberName="EndEdit">
4588       <MemberSignature Language="C#" Value="public bool EndEdit ();" />
4589       <MemberType>Method</MemberType>
4590       <ReturnValue>
4591         <ReturnType>System.Boolean</ReturnType>
4592       </ReturnValue>
4593       <Parameters />
4594       <Docs>
4595         <since version=".NET 2.0" />
4596         <remarks>
4597           <attribution license="cc4" from="Microsoft" modified="false" />
4598           <para>This method calls the <see cref="M:System.Windows.Forms.DataGridView.EndEdit(System.Windows.Forms.DataGridViewDataErrorContexts)" /> overload, passing in a bitwise combination of the <see cref="F:System.Windows.Forms.DataGridViewDataErrorContexts.Parsing" /> and <see cref="F:System.Windows.Forms.DataGridViewDataErrorContexts.Commit" /> values.</para>
4599           <para>This method raises the <see cref="E:System.Windows.Forms.DataGridView.CellEndEdit" /> event.</para>
4600           <para>This method may result in an exception if errors are not handled with the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</para>
4601         </remarks>
4602         <summary>
4603           <attribution license="cc4" from="Microsoft" modified="false" />
4604           <para>Commits and ends the edit operation on the current cell using the default error context.</para>
4605         </summary>
4606         <returns>
4607           <attribution license="cc4" from="Microsoft" modified="false" />
4608           <para>true if the edit operation is committed and ended; otherwise, false.</para>
4609         </returns>
4610       </Docs>
4611       <AssemblyInfo>
4612         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4613       </AssemblyInfo>
4614     </Member>
4615     <Member MemberName="EndEdit">
4616       <MemberSignature Language="C#" Value="public bool EndEdit (System.Windows.Forms.DataGridViewDataErrorContexts context);" />
4617       <MemberType>Method</MemberType>
4618       <ReturnValue>
4619         <ReturnType>System.Boolean</ReturnType>
4620       </ReturnValue>
4621       <Parameters>
4622         <Parameter Name="context" Type="System.Windows.Forms.DataGridViewDataErrorContexts" />
4623       </Parameters>
4624       <Docs>
4625         <since version=".NET 2.0" />
4626         <remarks>
4627           <attribution license="cc4" from="Microsoft" modified="false" />
4628           <para>This method raises the <see cref="E:System.Windows.Forms.DataGridView.CellEndEdit" /> event.</para>
4629           <para>This method may result in an exception if errors are not handled with the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</para>
4630         </remarks>
4631         <summary>
4632           <attribution license="cc4" from="Microsoft" modified="false" />
4633           <para>Commits and ends the edit operation on the current cell using the specified error context.</para>
4634         </summary>
4635         <returns>
4636           <attribution license="cc4" from="Microsoft" modified="false" />
4637           <para>true if the edit operation is committed and ended; otherwise, false.</para>
4638         </returns>
4639         <param name="context">
4640           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.DataGridViewDataErrorContexts" /> values that specifies the context in which an error can occur. </param>
4641       </Docs>
4642       <AssemblyInfo>
4643         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4644       </AssemblyInfo>
4645     </Member>
4646     <Member MemberName="FirstDisplayedCell">
4647       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCell FirstDisplayedCell { set; get; }" />
4648       <MemberType>Property</MemberType>
4649       <Attributes>
4650         <Attribute>
4651           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
4652         </Attribute>
4653         <Attribute>
4654           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4655         </Attribute>
4656       </Attributes>
4657       <ReturnValue>
4658         <ReturnType>System.Windows.Forms.DataGridViewCell</ReturnType>
4659       </ReturnValue>
4660       <Docs>
4661         <value>To be added.</value>
4662         <since version=".NET 2.0" />
4663         <remarks>
4664           <attribution license="cc4" from="Microsoft" modified="false" />
4665           <para>You can use this property to determine which cell is in the first row and column currently displayed in the control. Typically, this is in the upper left corner, but for right-to-left languages, it is in the upper right corner. You can also set this property to scroll the control to the indicated cell. </para>
4666         </remarks>
4667         <summary>
4668           <attribution license="cc4" from="Microsoft" modified="false" />
4669           <para>Gets or sets the first cell currently displayed in the <see cref="T:System.Windows.Forms.DataGridView" />; typically, this cell is in the upper left corner.</para>
4670         </summary>
4671       </Docs>
4672       <AssemblyInfo>
4673         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4674       </AssemblyInfo>
4675     </Member>
4676     <Member MemberName="FirstDisplayedScrollingColumnHiddenWidth">
4677       <MemberSignature Language="C#" Value="public int FirstDisplayedScrollingColumnHiddenWidth { get; }" />
4678       <MemberType>Property</MemberType>
4679       <Attributes>
4680         <Attribute>
4681           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4682         </Attribute>
4683         <Attribute>
4684           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
4685         </Attribute>
4686         <Attribute>
4687           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4688         </Attribute>
4689       </Attributes>
4690       <ReturnValue>
4691         <ReturnType>System.Int32</ReturnType>
4692       </ReturnValue>
4693       <Docs>
4694         <value>To be added.</value>
4695         <remarks>To be added.</remarks>
4696         <since version=".NET 2.0" />
4697         <summary>
4698           <attribution license="cc4" from="Microsoft" modified="false" />
4699           <para>Gets the width of the portion of the column that is currently scrolled out of view..</para>
4700         </summary>
4701       </Docs>
4702       <AssemblyInfo>
4703         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4704       </AssemblyInfo>
4705     </Member>
4706     <Member MemberName="FirstDisplayedScrollingColumnIndex">
4707       <MemberSignature Language="C#" Value="public int FirstDisplayedScrollingColumnIndex { set; get; }" />
4708       <MemberType>Property</MemberType>
4709       <Attributes>
4710         <Attribute>
4711           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
4712         </Attribute>
4713         <Attribute>
4714           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4715         </Attribute>
4716       </Attributes>
4717       <ReturnValue>
4718         <ReturnType>System.Int32</ReturnType>
4719       </ReturnValue>
4720       <Docs>
4721         <value>To be added.</value>
4722         <remarks>To be added.</remarks>
4723         <since version=".NET 2.0" />
4724         <summary>
4725           <attribution license="cc4" from="Microsoft" modified="false" />
4726           <para>Gets or sets the index of the column that is the first column displayed on the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
4727         </summary>
4728       </Docs>
4729       <AssemblyInfo>
4730         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4731       </AssemblyInfo>
4732     </Member>
4733     <Member MemberName="FirstDisplayedScrollingRowIndex">
4734       <MemberSignature Language="C#" Value="public int FirstDisplayedScrollingRowIndex { set; get; }" />
4735       <MemberType>Property</MemberType>
4736       <Attributes>
4737         <Attribute>
4738           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
4739         </Attribute>
4740         <Attribute>
4741           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4742         </Attribute>
4743       </Attributes>
4744       <ReturnValue>
4745         <ReturnType>System.Int32</ReturnType>
4746       </ReturnValue>
4747       <Docs>
4748         <value>To be added.</value>
4749         <since version=".NET 2.0" />
4750         <remarks>
4751           <attribution license="cc4" from="Microsoft" modified="false" />
4752           <para>Setting this property raises the <see cref="E:System.Windows.Forms.DataGridView.Scroll" /> event. </para>
4753         </remarks>
4754         <summary>
4755           <attribution license="cc4" from="Microsoft" modified="false" />
4756           <para>Gets or sets the index of the row that is the first row displayed on the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
4757         </summary>
4758       </Docs>
4759       <AssemblyInfo>
4760         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4761       </AssemblyInfo>
4762     </Member>
4763     <Member MemberName="Font">
4764       <MemberSignature Language="C#" Value="public override System.Drawing.Font Font { set; get; }" />
4765       <MemberType>Property</MemberType>
4766       <Attributes>
4767         <Attribute>
4768           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4769         </Attribute>
4770         <Attribute>
4771           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4772         </Attribute>
4773       </Attributes>
4774       <ReturnValue>
4775         <ReturnType>System.Drawing.Font</ReturnType>
4776       </ReturnValue>
4777       <Docs>
4778         <value>To be added.</value>
4779         <since version=".NET 2.0" />
4780         <remarks>
4781           <attribution license="cc4" from="Microsoft" modified="false" />
4782           <para>The <see cref="P:System.Windows.Forms.Control.Font" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para>
4783           <para>Because the <see cref="T:System.Drawing.Font" /> is immutable (meaning that you cannot adjust any of its properties), you can only assign the <see cref="P:System.Windows.Forms.Control.Font" /> property a new <see cref="T:System.Drawing.Font" /> object. However, you can base the new font on the existing font.</para>
4784           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control uses the value of the <see cref="P:System.Windows.Forms.DataGridView.Font" /> property as the default value of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Font" /> properties of <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> objects returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" />, and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> properties. Changing the <see cref="P:System.Windows.Forms.DataGridView.Font" /> value automatically updates the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" />, and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> properties, changing the font for any cell that inherits the value. Header cells override the value by default, and you can override the value for specific rows, columns, and cells. For more information about cell style inheritance, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
4785         </remarks>
4786         <summary>
4787           <attribution license="cc4" from="Microsoft" modified="false" />
4788           <para>Gets or sets the font of the text displayed by the <see cref="T:System.Windows.Forms.DataGridView" />. </para>
4789         </summary>
4790       </Docs>
4791       <AssemblyInfo>
4792         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4793       </AssemblyInfo>
4794     </Member>
4795     <Member MemberName="FontChanged">
4796       <MemberSignature Language="C#" Value="public event EventHandler FontChanged;" />
4797       <MemberType>Event</MemberType>
4798       <Attributes>
4799         <Attribute>
4800           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4801         </Attribute>
4802         <Attribute>
4803           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4804         </Attribute>
4805       </Attributes>
4806       <ReturnValue>
4807         <ReturnType>System.EventHandler</ReturnType>
4808       </ReturnValue>
4809       <Docs>
4810         <since version=".NET 2.0" />
4811         <remarks>
4812           <attribution license="cc4" from="Microsoft" modified="false" />
4813           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
4814         </remarks>
4815         <summary>
4816           <attribution license="cc4" from="Microsoft" modified="false" />
4817           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.Font" /> property value changes. </para>
4818         </summary>
4819       </Docs>
4820       <AssemblyInfo>
4821         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4822       </AssemblyInfo>
4823     </Member>
4824     <Member MemberName="ForeColor">
4825       <MemberSignature Language="C#" Value="public override System.Drawing.Color ForeColor { set; get; }" />
4826       <MemberType>Property</MemberType>
4827       <Attributes>
4828         <Attribute>
4829           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4830         </Attribute>
4831         <Attribute>
4832           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
4833         </Attribute>
4834         <Attribute>
4835           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4836         </Attribute>
4837       </Attributes>
4838       <ReturnValue>
4839         <ReturnType>System.Drawing.Color</ReturnType>
4840       </ReturnValue>
4841       <Docs>
4842         <value>To be added.</value>
4843         <since version=".NET 2.0" />
4844         <remarks>
4845           <attribution license="cc4" from="Microsoft" modified="false" />
4846           <para>The <see cref="P:System.Windows.Forms.Control.ForeColor" /> property is an ambient property. An ambient property is a control property that, if not set, is retrieved from the parent control. For example, a <see cref="T:System.Windows.Forms.Button" /> will have the same <see cref="P:System.Windows.Forms.Control.BackColor" /> as its parent <see cref="T:System.Windows.Forms.Form" /> by default. For more information about ambient properties, see the <see cref="T:System.Windows.Forms.AmbientProperties" /> class or the <see cref="T:System.Windows.Forms.Control" /> class overview.</para>
4847           <para>Because the <see cref="T:System.Drawing.Font" /> is immutable (meaning that you cannot adjust any of its properties), you can only assign the <see cref="P:System.Windows.Forms.Control.Font" /> property a new <see cref="T:System.Drawing.Font" /> object. However, you can base the new font on the existing font.</para>
4848           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control uses the value of the <see cref="P:System.Windows.Forms.DataGridView.ForeColor" /> property as the default value of the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.ForeColor" /> property of <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property. Changing the <see cref="P:System.Windows.Forms.DataGridView.ForeColor" /> value automatically updates the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property, changing the foreground text color for any cell that inherits the value. Header cells override the value by default, and you can override the value for specific rows, columns, and cells. For more information about cell style inheritance, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
4849         </remarks>
4850         <summary>
4851           <attribution license="cc4" from="Microsoft" modified="false" />
4852           <para>Gets or sets the foreground color of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
4853         </summary>
4854       </Docs>
4855       <AssemblyInfo>
4856         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4857       </AssemblyInfo>
4858     </Member>
4859     <Member MemberName="ForeColorChanged">
4860       <MemberSignature Language="C#" Value="public event EventHandler ForeColorChanged;" />
4861       <MemberType>Event</MemberType>
4862       <Attributes>
4863         <Attribute>
4864           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
4865         </Attribute>
4866         <Attribute>
4867           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
4868         </Attribute>
4869       </Attributes>
4870       <ReturnValue>
4871         <ReturnType>System.EventHandler</ReturnType>
4872       </ReturnValue>
4873       <Docs>
4874         <since version=".NET 2.0" />
4875         <remarks>
4876           <attribution license="cc4" from="Microsoft" modified="false" />
4877           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
4878         </remarks>
4879         <summary>
4880           <attribution license="cc4" from="Microsoft" modified="false" />
4881           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.ForeColor" /> property value changes. </para>
4882         </summary>
4883       </Docs>
4884       <AssemblyInfo>
4885         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4886       </AssemblyInfo>
4887     </Member>
4888     <Member MemberName="GetAccessibilityObjectById">
4889       <MemberSignature Language="C#" Value="protected override System.Windows.Forms.AccessibleObject GetAccessibilityObjectById (int objectId);" />
4890       <MemberType>Method</MemberType>
4891       <ReturnValue>
4892         <ReturnType>System.Windows.Forms.AccessibleObject</ReturnType>
4893       </ReturnValue>
4894       <Parameters>
4895         <Parameter Name="objectId" Type="System.Int32" />
4896       </Parameters>
4897       <Docs>
4898         <param name="objectId">To be added.</param>
4899         <summary>To be added.</summary>
4900         <returns>To be added.</returns>
4901         <remarks>To be added.</remarks>
4902         <since version=".NET 2.0" />
4903       </Docs>
4904       <AssemblyInfo>
4905         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4906       </AssemblyInfo>
4907     </Member>
4908     <Member MemberName="GetCellCount">
4909       <MemberSignature Language="C#" Value="public int GetCellCount (System.Windows.Forms.DataGridViewElementStates includeFilter);" />
4910       <MemberType>Method</MemberType>
4911       <ReturnValue>
4912         <ReturnType>System.Int32</ReturnType>
4913       </ReturnValue>
4914       <Parameters>
4915         <Parameter Name="includeFilter" Type="System.Windows.Forms.DataGridViewElementStates" />
4916       </Parameters>
4917       <Docs>
4918         <since version=".NET 2.0" />
4919         <remarks>
4920           <attribution license="cc4" from="Microsoft" modified="false" />
4921           <para>This method is useful to determine the number of cells in a particular state. To retrieve the number of selected cells, for example, use this method with the <see cref="F:System.Windows.Forms.DataGridViewElementStates.Selected" /> value. This is typically more efficient than using the <see cref="P:System.Windows.Forms.DataGridView.SelectedCells" /> property.</para>
4922         </remarks>
4923         <summary>
4924           <attribution license="cc4" from="Microsoft" modified="false" />
4925           <para>Gets the number of cells that satisfy the provided filter.</para>
4926         </summary>
4927         <returns>
4928           <attribution license="cc4" from="Microsoft" modified="false" />
4929           <para>The number of cells that match the <paramref name="includeFilter" /> parameter.</para>
4930         </returns>
4931         <param name="includeFilter">
4932           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Windows.Forms.DataGridViewElementStates" /> values specifying the cells to count.</param>
4933       </Docs>
4934       <AssemblyInfo>
4935         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4936       </AssemblyInfo>
4937     </Member>
4938     <Member MemberName="GetCellDisplayRectangle">
4939       <MemberSignature Language="C#" Value="public System.Drawing.Rectangle GetCellDisplayRectangle (int columnIndex, int rowIndex, bool cutOverflow);" />
4940       <MemberType>Method</MemberType>
4941       <ReturnValue>
4942         <ReturnType>System.Drawing.Rectangle</ReturnType>
4943       </ReturnValue>
4944       <Parameters>
4945         <Parameter Name="columnIndex" Type="System.Int32" />
4946         <Parameter Name="rowIndex" Type="System.Int32" />
4947         <Parameter Name="cutOverflow" Type="System.Boolean" />
4948       </Parameters>
4949       <Docs>
4950         <since version=".NET 2.0" />
4951         <remarks>
4952           <attribution license="cc4" from="Microsoft" modified="false" />
4953           <para>This method returns the entire cell bounds or the displayed portion only. To get the bounds of the cell contents only, use the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ContentBounds" /> property. </para>
4954         </remarks>
4955         <summary>
4956           <attribution license="cc4" from="Microsoft" modified="false" />
4957           <para>Returns the rectangle that represents the display area for a cell.</para>
4958         </summary>
4959         <returns>
4960           <attribution license="cc4" from="Microsoft" modified="false" />
4961           <para>The <see cref="T:System.Drawing.Rectangle" /> that represents the display rectangle of the cell.</para>
4962         </returns>
4963         <param name="columnIndex">
4964           <attribution license="cc4" from="Microsoft" modified="false" />The column index for the desired cell. </param>
4965         <param name="rowIndex">
4966           <attribution license="cc4" from="Microsoft" modified="false" />The row index for the desired cell. </param>
4967         <param name="cutOverflow">
4968           <attribution license="cc4" from="Microsoft" modified="false" />true to return the displayed portion of the cell only; false to return the entire cell bounds. </param>
4969       </Docs>
4970       <AssemblyInfo>
4971         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4972       </AssemblyInfo>
4973     </Member>
4974     <Member MemberName="GetClipboardContent">
4975       <MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataObject GetClipboardContent ();" />
4976       <MemberType>Method</MemberType>
4977       <ReturnValue>
4978         <ReturnType>System.Windows.Forms.DataObject</ReturnType>
4979       </ReturnValue>
4980       <Parameters />
4981       <Docs>
4982         <since version=".NET 2.0" />
4983         <remarks>
4984           <attribution license="cc4" from="Microsoft" modified="false" />
4985           <para>This method retrieves data that represents the region defined by the selected cells. This region is the smallest rectangle that includes all of the selected cells. The value for each selected cell in this region is retrieved by calling the <see cref="M:System.Windows.Forms.DataGridViewCell.GetClipboardContent(System.Int32,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.String)" /> method. Blank placeholder values are used for unselected cells in this region. This method combines these values into a <see cref="T:System.Windows.Forms.DataObject" /> containing several formats for copying to the clipboard. The supported clipboard formats include <see cref="F:System.Windows.Forms.DataFormats.Text" />, <see cref="F:System.Windows.Forms.DataFormats.UnicodeText" />, <see cref="F:System.Windows.Forms.DataFormats.Html" />, and <see cref="F:System.Windows.Forms.DataFormats.CommaSeparatedValue" />.</para>
4986           <para>For more information, see the <see cref="T:System.Windows.Forms.Clipboard" /> class.</para>
4987         </remarks>
4988         <summary>
4989           <attribution license="cc4" from="Microsoft" modified="false" />
4990           <para>Retrieves the formatted values that represent the contents of the selected cells for copying to the <see cref="T:System.Windows.Forms.Clipboard" />.</para>
4991         </summary>
4992         <returns>
4993           <attribution license="cc4" from="Microsoft" modified="false" />
4994           <para>A <see cref="T:System.Windows.Forms.DataObject" /> that represents the contents of the selected cells.</para>
4995         </returns>
4996       </Docs>
4997       <AssemblyInfo>
4998         <AssemblyVersion>2.0.0.0</AssemblyVersion>
4999       </AssemblyInfo>
5000     </Member>
5001     <Member MemberName="GetColumnDisplayRectangle">
5002       <MemberSignature Language="C#" Value="public System.Drawing.Rectangle GetColumnDisplayRectangle (int columnIndex, bool cutOverflow);" />
5003       <MemberType>Method</MemberType>
5004       <ReturnValue>
5005         <ReturnType>System.Drawing.Rectangle</ReturnType>
5006       </ReturnValue>
5007       <Parameters>
5008         <Parameter Name="columnIndex" Type="System.Int32" />
5009         <Parameter Name="cutOverflow" Type="System.Boolean" />
5010       </Parameters>
5011       <Docs>
5012         <remarks>To be added.</remarks>
5013         <since version=".NET 2.0" />
5014         <summary>
5015           <attribution license="cc4" from="Microsoft" modified="false" />
5016           <para>Returns the rectangle that represents the display area for a column, as determined by the column index.</para>
5017         </summary>
5018         <returns>
5019           <attribution license="cc4" from="Microsoft" modified="false" />
5020           <para>The <see cref="T:System.Drawing.Rectangle" /> that represents the display rectangle of the column.</para>
5021         </returns>
5022         <param name="columnIndex">
5023           <attribution license="cc4" from="Microsoft" modified="false" />The column index for the desired cell. </param>
5024         <param name="cutOverflow">
5025           <attribution license="cc4" from="Microsoft" modified="false" />true to return the column rectangle visible in the <see cref="T:System.Windows.Forms.DataGridView" /> bounds; false to return the entire column rectangle. </param>
5026       </Docs>
5027       <AssemblyInfo>
5028         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5029       </AssemblyInfo>
5030     </Member>
5031     <Member MemberName="GetRowDisplayRectangle">
5032       <MemberSignature Language="C#" Value="public System.Drawing.Rectangle GetRowDisplayRectangle (int rowIndex, bool cutOverflow);" />
5033       <MemberType>Method</MemberType>
5034       <ReturnValue>
5035         <ReturnType>System.Drawing.Rectangle</ReturnType>
5036       </ReturnValue>
5037       <Parameters>
5038         <Parameter Name="rowIndex" Type="System.Int32" />
5039         <Parameter Name="cutOverflow" Type="System.Boolean" />
5040       </Parameters>
5041       <Docs>
5042         <remarks>To be added.</remarks>
5043         <since version=".NET 2.0" />
5044         <summary>
5045           <attribution license="cc4" from="Microsoft" modified="false" />
5046           <para>Returns the rectangle that represents the display area for a row, as determined by the row index.</para>
5047         </summary>
5048         <returns>
5049           <attribution license="cc4" from="Microsoft" modified="false" />
5050           <para>The <see cref="T:System.Drawing.Rectangle" /> that represents the display rectangle of the row.</para>
5051         </returns>
5052         <param name="rowIndex">
5053           <attribution license="cc4" from="Microsoft" modified="false" />The row index for the desired cell. </param>
5054         <param name="cutOverflow">
5055           <attribution license="cc4" from="Microsoft" modified="false" />true to return the row rectangle visible in the <see cref="T:System.Windows.Forms.DataGridView" /> bounds; false to return the entire row rectangle. </param>
5056       </Docs>
5057       <AssemblyInfo>
5058         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5059       </AssemblyInfo>
5060     </Member>
5061     <Member MemberName="GridColor">
5062       <MemberSignature Language="C#" Value="public System.Drawing.Color GridColor { set; get; }" />
5063       <MemberType>Property</MemberType>
5064       <ReturnValue>
5065         <ReturnType>System.Drawing.Color</ReturnType>
5066       </ReturnValue>
5067       <Docs>
5068         <value>To be added.</value>
5069         <since version=".NET 2.0" />
5070         <remarks>
5071           <attribution license="cc4" from="Microsoft" modified="false" />
5072           <para>You can set the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property to any color when you use a single border; with other types of borders, the colors are specified by the operating system. If visual styles are enabled for the application through the <see cref="M:System.Windows.Forms.Application.EnableVisualStyles" /> method, the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property is ignored, and the current theme's colors are used.</para>
5073         </remarks>
5074         <summary>
5075           <attribution license="cc4" from="Microsoft" modified="false" />
5076           <para>Gets or sets the color of the grid lines separating the cells of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
5077         </summary>
5078       </Docs>
5079       <AssemblyInfo>
5080         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5081       </AssemblyInfo>
5082     </Member>
5083     <Member MemberName="GridColorChanged">
5084       <MemberSignature Language="C#" Value="public event EventHandler GridColorChanged;" />
5085       <MemberType>Event</MemberType>
5086       <ReturnValue>
5087         <ReturnType>System.EventHandler</ReturnType>
5088       </ReturnValue>
5089       <Docs>
5090         <since version=".NET 2.0" />
5091         <remarks>
5092           <attribution license="cc4" from="Microsoft" modified="false" />
5093           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
5094         </remarks>
5095         <summary>
5096           <attribution license="cc4" from="Microsoft" modified="false" />
5097           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property changes.</para>
5098         </summary>
5099       </Docs>
5100       <AssemblyInfo>
5101         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5102       </AssemblyInfo>
5103     </Member>
5104     <Member MemberName="HitTest">
5105       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridView.HitTestInfo HitTest (int x, int y);" />
5106       <MemberType>Method</MemberType>
5107       <ReturnValue>
5108         <ReturnType>System.Windows.Forms.DataGridView+HitTestInfo</ReturnType>
5109       </ReturnValue>
5110       <Parameters>
5111         <Parameter Name="x" Type="System.Int32" />
5112         <Parameter Name="y" Type="System.Int32" />
5113       </Parameters>
5114       <Docs>
5115         <since version=".NET 2.0" />
5116         <remarks>
5117           <attribution license="cc4" from="Microsoft" modified="false" />
5118           <para>You can use this method to determine which part of the <see cref="T:System.Windows.Forms.DataGridView" /> control is located at the specified coordinates. For example, you can call this method—specifying the coordinates of a mouse click—to determine the row and column indexes of the clicked cell or whether a header cell or scroll bar was clicked. </para>
5119         </remarks>
5120         <summary>
5121           <attribution license="cc4" from="Microsoft" modified="false" />
5122           <para>Returns location information, such as row and column indices, given x- and y-coordinates.</para>
5123         </summary>
5124         <returns>
5125           <attribution license="cc4" from="Microsoft" modified="false" />
5126           <para>A <see cref="T:System.Windows.Forms.DataGridView.HitTestInfo" /> that contains the location information. </para>
5127         </returns>
5128         <param name="x">
5129           <attribution license="cc4" from="Microsoft" modified="false" />The x-coordinate. </param>
5130         <param name="y">
5131           <attribution license="cc4" from="Microsoft" modified="false" />The y-coordinate. </param>
5132       </Docs>
5133       <AssemblyInfo>
5134         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5135       </AssemblyInfo>
5136     </Member>
5137     <Member MemberName="HorizontalScrollBar">
5138       <MemberSignature Language="C#" Value="protected System.Windows.Forms.ScrollBar HorizontalScrollBar { get; }" />
5139       <MemberType>Property</MemberType>
5140       <ReturnValue>
5141         <ReturnType>System.Windows.Forms.ScrollBar</ReturnType>
5142       </ReturnValue>
5143       <Docs>
5144         <value>To be added.</value>
5145         <remarks>To be added.</remarks>
5146         <since version=".NET 2.0" />
5147         <summary>
5148           <attribution license="cc4" from="Microsoft" modified="false" />
5149           <para>Gets the horizontal scroll bar of the control.</para>
5150         </summary>
5151       </Docs>
5152       <AssemblyInfo>
5153         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5154       </AssemblyInfo>
5155     </Member>
5156     <Member MemberName="HorizontalScrollingOffset">
5157       <MemberSignature Language="C#" Value="public int HorizontalScrollingOffset { set; get; }" />
5158       <MemberType>Property</MemberType>
5159       <Attributes>
5160         <Attribute>
5161           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
5162         </Attribute>
5163         <Attribute>
5164           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5165         </Attribute>
5166       </Attributes>
5167       <ReturnValue>
5168         <ReturnType>System.Int32</ReturnType>
5169       </ReturnValue>
5170       <Docs>
5171         <value>To be added.</value>
5172         <remarks>To be added.</remarks>
5173         <since version=".NET 2.0" />
5174         <summary>
5175           <attribution license="cc4" from="Microsoft" modified="false" />
5176           <para>Gets or sets the number of pixels by which the control is scrolled horizontally. </para>
5177         </summary>
5178       </Docs>
5179       <AssemblyInfo>
5180         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5181       </AssemblyInfo>
5182     </Member>
5183     <Member MemberName="InvalidateCell">
5184       <MemberSignature Language="C#" Value="public void InvalidateCell (System.Windows.Forms.DataGridViewCell dataGridViewCell);" />
5185       <MemberType>Method</MemberType>
5186       <ReturnValue>
5187         <ReturnType>System.Void</ReturnType>
5188       </ReturnValue>
5189       <Parameters>
5190         <Parameter Name="dataGridViewCell" Type="System.Windows.Forms.DataGridViewCell" />
5191       </Parameters>
5192       <Docs>
5193         <since version=".NET 2.0" />
5194         <remarks>
5195           <attribution license="cc4" from="Microsoft" modified="false" />
5196           <para>This method is useful to force a cell repaint in conditions that would not normally cause a cell to be repainted. For example, you can use this method with a custom cell type that changes its appearance as a result of external events. </para>
5197           <para>For more information about painting and invalidation, see <see cref="Overload:System.Windows.Forms.Control.Invalidate" />.</para>
5198         </remarks>
5199         <summary>
5200           <attribution license="cc4" from="Microsoft" modified="false" />
5201           <para>Invalidates the specified cell of the <see cref="T:System.Windows.Forms.DataGridView" />, forcing it to be repainted.</para>
5202         </summary>
5203         <param name="dataGridViewCell">
5204           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.DataGridViewCell" /> to invalidate. </param>
5205       </Docs>
5206       <AssemblyInfo>
5207         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5208       </AssemblyInfo>
5209     </Member>
5210     <Member MemberName="InvalidateCell">
5211       <MemberSignature Language="C#" Value="public void InvalidateCell (int columnIndex, int rowIndex);" />
5212       <MemberType>Method</MemberType>
5213       <ReturnValue>
5214         <ReturnType>System.Void</ReturnType>
5215       </ReturnValue>
5216       <Parameters>
5217         <Parameter Name="columnIndex" Type="System.Int32" />
5218         <Parameter Name="rowIndex" Type="System.Int32" />
5219       </Parameters>
5220       <Docs>
5221         <since version=".NET 2.0" />
5222         <remarks>
5223           <attribution license="cc4" from="Microsoft" modified="false" />
5224           <para>This method is useful to force a cell repaint in conditions that would not normally cause a cell to be repainted. For example, you can use this method with a custom cell type that changes its appearance as a result of external events. </para>
5225           <para>For more information about painting and invalidation, see <see cref="Overload:System.Windows.Forms.Control.Invalidate" />.</para>
5226         </remarks>
5227         <summary>
5228           <attribution license="cc4" from="Microsoft" modified="false" />
5229           <para>Invalidates the cell with the specified row and column indexes, forcing it to be repainted.</para>
5230         </summary>
5231         <param name="columnIndex">
5232           <attribution license="cc4" from="Microsoft" modified="false" />The column index of the cell to invalidate.</param>
5233         <param name="rowIndex">
5234           <attribution license="cc4" from="Microsoft" modified="false" />The row index of the cell to invalidate. </param>
5235       </Docs>
5236       <AssemblyInfo>
5237         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5238       </AssemblyInfo>
5239     </Member>
5240     <Member MemberName="InvalidateColumn">
5241       <MemberSignature Language="C#" Value="public void InvalidateColumn (int columnIndex);" />
5242       <MemberType>Method</MemberType>
5243       <ReturnValue>
5244         <ReturnType>System.Void</ReturnType>
5245       </ReturnValue>
5246       <Parameters>
5247         <Parameter Name="columnIndex" Type="System.Int32" />
5248       </Parameters>
5249       <Docs>
5250         <since version=".NET 2.0" />
5251         <remarks>
5252           <attribution license="cc4" from="Microsoft" modified="false" />
5253           <para>For more information about painting and invalidation, see <see cref="Overload:System.Windows.Forms.Control.Invalidate" />.</para>
5254         </remarks>
5255         <summary>
5256           <attribution license="cc4" from="Microsoft" modified="false" />
5257           <para>Invalidates the specified column of the <see cref="T:System.Windows.Forms.DataGridView" />, forcing it to be repainted.</para>
5258         </summary>
5259         <param name="columnIndex">
5260           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column to invalidate. </param>
5261       </Docs>
5262       <AssemblyInfo>
5263         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5264       </AssemblyInfo>
5265     </Member>
5266     <Member MemberName="InvalidateRow">
5267       <MemberSignature Language="C#" Value="public void InvalidateRow (int rowIndex);" />
5268       <MemberType>Method</MemberType>
5269       <ReturnValue>
5270         <ReturnType>System.Void</ReturnType>
5271       </ReturnValue>
5272       <Parameters>
5273         <Parameter Name="rowIndex" Type="System.Int32" />
5274       </Parameters>
5275       <Docs>
5276         <since version=".NET 2.0" />
5277         <remarks>
5278           <attribution license="cc4" from="Microsoft" modified="false" />
5279           <para>Use this method to force a row to repaint itself. This method is useful in owner-drawing scenarios where you handle the <see cref="E:System.Windows.Forms.DataGridView.RowPrePaint" /> or <see cref="E:System.Windows.Forms.DataGridView.RowPostPaint" /> events. </para>
5280           <para>For more information about painting and invalidation, see <see cref="Overload:System.Windows.Forms.Control.Invalidate" />.</para>
5281         </remarks>
5282         <summary>
5283           <attribution license="cc4" from="Microsoft" modified="false" />
5284           <para>Invalidates the specified row of the <see cref="T:System.Windows.Forms.DataGridView" />, forcing it to be repainted.</para>
5285         </summary>
5286         <param name="rowIndex">
5287           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row to invalidate. </param>
5288       </Docs>
5289       <AssemblyInfo>
5290         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5291       </AssemblyInfo>
5292     </Member>
5293     <Member MemberName="IsCurrentCellDirty">
5294       <MemberSignature Language="C#" Value="public bool IsCurrentCellDirty { get; }" />
5295       <MemberType>Property</MemberType>
5296       <Attributes>
5297         <Attribute>
5298           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5299         </Attribute>
5300       </Attributes>
5301       <ReturnValue>
5302         <ReturnType>System.Boolean</ReturnType>
5303       </ReturnValue>
5304       <Docs>
5305         <value>To be added.</value>
5306         <since version=".NET 2.0" />
5307         <remarks>
5308           <attribution license="cc4" from="Microsoft" modified="false" />
5309           <para>When the <see cref="T:System.Windows.Forms.DataGridView" /> is not bound to data, the cell edit is considered committed when the user moves to another cell.</para>
5310           <para>If row headers are visible, a pencil glyph is present in the header for the row that contains a cell with uncommitted changes.</para>
5311           <para>If <see cref="P:System.Windows.Forms.DataGridView.IsCurrentCellDirty" /> is true and the current cell hosts an editing control, you can retrieve it through the <see cref="P:System.Windows.Forms.DataGridView.EditingControl" /> property. </para>
5312         </remarks>
5313         <summary>
5314           <attribution license="cc4" from="Microsoft" modified="false" />
5315           <para>Gets a value indicating whether the current cell has uncommitted changes.</para>
5316         </summary>
5317       </Docs>
5318       <AssemblyInfo>
5319         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5320       </AssemblyInfo>
5321     </Member>
5322     <Member MemberName="IsCurrentCellInEditMode">
5323       <MemberSignature Language="C#" Value="public bool IsCurrentCellInEditMode { get; }" />
5324       <MemberType>Property</MemberType>
5325       <Attributes>
5326         <Attribute>
5327           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5328         </Attribute>
5329       </Attributes>
5330       <ReturnValue>
5331         <ReturnType>System.Boolean</ReturnType>
5332       </ReturnValue>
5333       <Docs>
5334         <value>To be added.</value>
5335         <since version=".NET 2.0" />
5336         <remarks>
5337           <attribution license="cc4" from="Microsoft" modified="false" />
5338           <para>A <see cref="T:System.Windows.Forms.DataGridViewCheckBoxCell" /> that has focus is always in edit mode. If the current cell hosts an editing control and <see cref="P:System.Windows.Forms.DataGridView.IsCurrentCellInEditMode" /> is true, you can retrieve the editing control through the <see cref="P:System.Windows.Forms.DataGridView.EditingControl" /> property.</para>
5339         </remarks>
5340         <summary>
5341           <attribution license="cc4" from="Microsoft" modified="false" />
5342           <para>Gets a value indicating whether the currently active cell is being edited.</para>
5343         </summary>
5344       </Docs>
5345       <AssemblyInfo>
5346         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5347       </AssemblyInfo>
5348     </Member>
5349     <Member MemberName="IsCurrentRowDirty">
5350       <MemberSignature Language="C#" Value="public bool IsCurrentRowDirty { get; }" />
5351       <MemberType>Property</MemberType>
5352       <Attributes>
5353         <Attribute>
5354           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5355         </Attribute>
5356       </Attributes>
5357       <ReturnValue>
5358         <ReturnType>System.Boolean</ReturnType>
5359       </ReturnValue>
5360       <Docs>
5361         <value>To be added.</value>
5362         <since version=".NET 2.0" />
5363         <remarks>
5364           <attribution license="cc4" from="Microsoft" modified="false" />
5365           <para>This property returns true when the pencil glyph is displayed in the row. By default, the <see cref="P:System.Windows.Forms.DataGridView.IsCurrentRowDirty" /> property will always equal the value of the <see cref="P:System.Windows.Forms.DataGridView.IsCurrentCellDirty" /> property, unless the <see cref="T:System.Windows.Forms.DataGridView" /> is bound to a data source that supports editing, or virtual mode has been implemented to use row-level commit scope. In these cases, the <see cref="T:System.Windows.Forms.DataGridView" /> will evaluate this property at the row level.</para>
5366           <para>When the user navigates away from the row, the control commits all row changes. The user can also press CTRL+ENTER to commit row changes without leaving the row. To commit row changes programmatically, call the form's <see cref="M:System.Windows.Forms.ContainerControl.Validate" /> method. If your data source is a <see cref="T:System.Windows.Forms.BindingSource" />, you can also call <see cref="M:System.Windows.Forms.BindingSource.EndEdit" />. </para>
5367         </remarks>
5368         <summary>
5369           <attribution license="cc4" from="Microsoft" modified="false" />
5370           <para>Gets a value indicating whether the current row has uncommitted changes.</para>
5371         </summary>
5372       </Docs>
5373       <AssemblyInfo>
5374         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5375       </AssemblyInfo>
5376     </Member>
5377     <Member MemberName="IsInputChar">
5378       <MemberSignature Language="C#" Value="protected override bool IsInputChar (char charCode);" />
5379       <MemberType>Method</MemberType>
5380       <ReturnValue>
5381         <ReturnType>System.Boolean</ReturnType>
5382       </ReturnValue>
5383       <Parameters>
5384         <Parameter Name="charCode" Type="System.Char" />
5385       </Parameters>
5386       <Docs>
5387         <since version=".NET 2.0" />
5388         <remarks>
5389           <attribution license="cc4" from="Microsoft" modified="false" />
5390           <para>A character is recognized as an input character depending on whether the control is in edit mode and whether the current editing control can accept the character.</para>
5391         </remarks>
5392         <summary>
5393           <attribution license="cc4" from="Microsoft" modified="false" />
5394           <para>Determines whether a character is an input character that the <see cref="T:System.Windows.Forms.DataGridView" /> recognizes.</para>
5395         </summary>
5396         <returns>
5397           <attribution license="cc4" from="Microsoft" modified="false" />
5398           <para>true if the character is recognized as an input character; otherwise, false.</para>
5399         </returns>
5400         <param name="charCode">
5401           <attribution license="cc4" from="Microsoft" modified="false" />The character to test.</param>
5402       </Docs>
5403       <AssemblyInfo>
5404         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5405       </AssemblyInfo>
5406     </Member>
5407     <Member MemberName="IsInputKey">
5408       <MemberSignature Language="C#" Value="protected override bool IsInputKey (System.Windows.Forms.Keys keyData);" />
5409       <MemberType>Method</MemberType>
5410       <ReturnValue>
5411         <ReturnType>System.Boolean</ReturnType>
5412       </ReturnValue>
5413       <Parameters>
5414         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
5415       </Parameters>
5416       <Docs>
5417         <param name="keyData">To be added.</param>
5418         <summary>To be added.</summary>
5419         <returns>To be added.</returns>
5420         <remarks>To be added.</remarks>
5421         <since version=".NET 2.0" />
5422       </Docs>
5423       <AssemblyInfo>
5424         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5425       </AssemblyInfo>
5426     </Member>
5427     <Member MemberName="Item">
5428       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCell this[int columnIndex, int rowIndex] { set; get; }" />
5429       <MemberType>Property</MemberType>
5430       <Attributes>
5431         <Attribute>
5432           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
5433         </Attribute>
5434         <Attribute>
5435           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5436         </Attribute>
5437       </Attributes>
5438       <ReturnValue>
5439         <ReturnType>System.Windows.Forms.DataGridViewCell</ReturnType>
5440       </ReturnValue>
5441       <Parameters>
5442         <Parameter Name="columnIndex" Type="System.Int32" />
5443         <Parameter Name="rowIndex" Type="System.Int32" />
5444       </Parameters>
5445       <Docs>
5446         <param name="columnIndex">To be added.</param>
5447         <param name="rowIndex">To be added.</param>
5448         <summary>To be added.</summary>
5449         <value>To be added.</value>
5450         <remarks>To be added.</remarks>
5451         <since version=".NET 2.0" />
5452       </Docs>
5453       <AssemblyInfo>
5454         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5455       </AssemblyInfo>
5456     </Member>
5457     <Member MemberName="Item">
5458       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCell this[string columnName, int rowIndex] { set; get; }" />
5459       <MemberType>Property</MemberType>
5460       <Attributes>
5461         <Attribute>
5462           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
5463         </Attribute>
5464         <Attribute>
5465           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5466         </Attribute>
5467       </Attributes>
5468       <ReturnValue>
5469         <ReturnType>System.Windows.Forms.DataGridViewCell</ReturnType>
5470       </ReturnValue>
5471       <Parameters>
5472         <Parameter Name="columnName" Type="System.String" />
5473         <Parameter Name="rowIndex" Type="System.Int32" />
5474       </Parameters>
5475       <Docs>
5476         <param name="columnName">To be added.</param>
5477         <param name="rowIndex">To be added.</param>
5478         <summary>To be added.</summary>
5479         <value>To be added.</value>
5480         <remarks>To be added.</remarks>
5481         <since version=".NET 2.0" />
5482       </Docs>
5483       <AssemblyInfo>
5484         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5485       </AssemblyInfo>
5486     </Member>
5487     <Member MemberName="MultiSelect">
5488       <MemberSignature Language="C#" Value="public bool MultiSelect { set; get; }" />
5489       <MemberType>Property</MemberType>
5490       <Attributes>
5491         <Attribute>
5492           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
5493         </Attribute>
5494       </Attributes>
5495       <ReturnValue>
5496         <ReturnType>System.Boolean</ReturnType>
5497       </ReturnValue>
5498       <Docs>
5499         <value>To be added.</value>
5500         <since version=".NET 2.0" />
5501         <remarks>
5502           <attribution license="cc4" from="Microsoft" modified="false" />
5503           <para>When the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property is set to true, multiple elements (cells, rows, or columns) can be selected in the <see cref="T:System.Windows.Forms.DataGridView" /> control. To select multiple elements, the user can hold down the CTRL key while clicking the elements to select. Consecutive elements can be selected by clicking the first element to select and then, while holding down the SHIFT key, clicking the last element to select. The selection scope is based on the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property. For example, if <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> is set to <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" />, the user can select multiple columns.</para>
5504           <para>You can use the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property to allow a user to select multiple elements in the <see cref="T:System.Windows.Forms.DataGridView" /> control and perform an operation on all the selected elements. For example, the user could select multiple cells and then right-click a selected cell to display a shortcut menu that displays a set of tasks to perform on the selected cells.</para>
5505           <para>To determine which cells, rows, or columns are selected in the <see cref="T:System.Windows.Forms.DataGridView" /> control, you can access the <see cref="P:System.Windows.Forms.DataGridView.SelectedCells" />, <see cref="P:System.Windows.Forms.DataGridView.SelectedRows" />, or <see cref="P:System.Windows.Forms.DataGridView.SelectedColumns" /> property. To determine the number of selected cells, call the <see cref="M:System.Windows.Forms.DataGridView.GetCellCount(System.Windows.Forms.DataGridViewElementStates)" /> method with an argument value of <see cref="F:System.Windows.Forms.DataGridViewElementStates.Selected" />. Use the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetRowCount(System.Windows.Forms.DataGridViewElementStates)" /> method to retrieve the number of selected rows and the <see cref="M:System.Windows.Forms.DataGridViewColumnCollection.GetColumnCount(System.Windows.Forms.DataGridViewElementStates)" /> method to retrieve the number of columns. These methods are more efficient than accessing the collections directly when working with large amounts of data. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
5506         </remarks>
5507         <summary>
5508           <attribution license="cc4" from="Microsoft" modified="false" />
5509           <para>Gets or sets a value indicating whether the user is allowed to select more than one cell, row, or column of the <see cref="T:System.Windows.Forms.DataGridView" /> at a time.</para>
5510         </summary>
5511       </Docs>
5512       <AssemblyInfo>
5513         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5514       </AssemblyInfo>
5515     </Member>
5516     <Member MemberName="MultiSelectChanged">
5517       <MemberSignature Language="C#" Value="public event EventHandler MultiSelectChanged;" />
5518       <MemberType>Event</MemberType>
5519       <ReturnValue>
5520         <ReturnType>System.EventHandler</ReturnType>
5521       </ReturnValue>
5522       <Docs>
5523         <since version=".NET 2.0" />
5524         <remarks>
5525           <attribution license="cc4" from="Microsoft" modified="false" />
5526           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
5527         </remarks>
5528         <summary>
5529           <attribution license="cc4" from="Microsoft" modified="false" />
5530           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property changes.</para>
5531         </summary>
5532       </Docs>
5533       <AssemblyInfo>
5534         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5535       </AssemblyInfo>
5536     </Member>
5537     <Member MemberName="NewRowIndex">
5538       <MemberSignature Language="C#" Value="public int NewRowIndex { get; }" />
5539       <MemberType>Property</MemberType>
5540       <Attributes>
5541         <Attribute>
5542           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
5543         </Attribute>
5544         <Attribute>
5545           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
5546         </Attribute>
5547       </Attributes>
5548       <ReturnValue>
5549         <ReturnType>System.Int32</ReturnType>
5550       </ReturnValue>
5551       <Docs>
5552         <value>To be added.</value>
5553         <since version=".NET 2.0" />
5554         <remarks>
5555           <attribution license="cc4" from="Microsoft" modified="false" />
5556           <para>Unless <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is false, the value of this property is equal to the number of rows in the control minus 1.</para>
5557         </remarks>
5558         <summary>
5559           <attribution license="cc4" from="Microsoft" modified="false" />
5560           <para>Gets the index of the row for new records.</para>
5561         </summary>
5562       </Docs>
5563       <AssemblyInfo>
5564         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5565       </AssemblyInfo>
5566     </Member>
5567     <Member MemberName="NewRowNeeded">
5568       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler NewRowNeeded;" />
5569       <MemberType>Event</MemberType>
5570       <ReturnValue>
5571         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
5572       </ReturnValue>
5573       <Docs>
5574         <since version=".NET 2.0" />
5575         <remarks>
5576           <attribution license="cc4" from="Microsoft" modified="false" />
5577           <para>When the <see cref="T:System.Windows.Forms.DataGridView" /> is in virtual mode, this event allows a new entry to be created in the data store for the new row, and it also allows for the row to be populated with default values.</para>
5578           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
5579         </remarks>
5580         <summary>
5581           <attribution license="cc4" from="Microsoft" modified="false" />
5582           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> is true and the user navigates to the new row at the bottom of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
5583         </summary>
5584       </Docs>
5585       <AssemblyInfo>
5586         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5587       </AssemblyInfo>
5588     </Member>
5589     <Member MemberName="NotifyCurrentCellDirty">
5590       <MemberSignature Language="C#" Value="public virtual void NotifyCurrentCellDirty (bool dirty);" />
5591       <MemberType>Method</MemberType>
5592       <ReturnValue>
5593         <ReturnType>System.Void</ReturnType>
5594       </ReturnValue>
5595       <Parameters>
5596         <Parameter Name="dirty" Type="System.Boolean" />
5597       </Parameters>
5598       <Docs>
5599         <since version=".NET 2.0" />
5600         <remarks>
5601           <attribution license="cc4" from="Microsoft" modified="false" />
5602           <para>This method can be used to allow custom cell types to notify the <see cref="T:System.Windows.Forms.DataGridView" /> when they have uncommitted changes.</para>
5603         </remarks>
5604         <summary>
5605           <attribution license="cc4" from="Microsoft" modified="false" />
5606           <para>Notifies the <see cref="T:System.Windows.Forms.DataGridView" /> that the current cell has uncommitted changes.</para>
5607         </summary>
5608         <param name="dirty">
5609           <attribution license="cc4" from="Microsoft" modified="false" />true to indicate the cell has uncommitted changes; otherwise, false. </param>
5610       </Docs>
5611       <AssemblyInfo>
5612         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5613       </AssemblyInfo>
5614     </Member>
5615     <Member MemberName="OnAllowUserToAddRowsChanged">
5616       <MemberSignature Language="C#" Value="protected virtual void OnAllowUserToAddRowsChanged (EventArgs e);" />
5617       <MemberType>Method</MemberType>
5618       <ReturnValue>
5619         <ReturnType>System.Void</ReturnType>
5620       </ReturnValue>
5621       <Parameters>
5622         <Parameter Name="e" Type="System.EventArgs" />
5623       </Parameters>
5624       <Docs>
5625         <since version=".NET 2.0" />
5626         <remarks>
5627           <attribution license="cc4" from="Microsoft" modified="false" />
5628           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5629           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAllowUserToAddRowsChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5630         </remarks>
5631         <summary>
5632           <attribution license="cc4" from="Microsoft" modified="false" />
5633           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToAddRowsChanged" /> event.</para>
5634         </summary>
5635         <param name="e">
5636           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5637       </Docs>
5638       <AssemblyInfo>
5639         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5640       </AssemblyInfo>
5641     </Member>
5642     <Member MemberName="OnAllowUserToDeleteRowsChanged">
5643       <MemberSignature Language="C#" Value="protected virtual void OnAllowUserToDeleteRowsChanged (EventArgs e);" />
5644       <MemberType>Method</MemberType>
5645       <ReturnValue>
5646         <ReturnType>System.Void</ReturnType>
5647       </ReturnValue>
5648       <Parameters>
5649         <Parameter Name="e" Type="System.EventArgs" />
5650       </Parameters>
5651       <Docs>
5652         <since version=".NET 2.0" />
5653         <remarks>
5654           <attribution license="cc4" from="Microsoft" modified="false" />
5655           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5656           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAllowUserToDeleteRowsChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5657         </remarks>
5658         <summary>
5659           <attribution license="cc4" from="Microsoft" modified="false" />
5660           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToDeleteRowsChanged" /> event.</para>
5661         </summary>
5662         <param name="e">
5663           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5664       </Docs>
5665       <AssemblyInfo>
5666         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5667       </AssemblyInfo>
5668     </Member>
5669     <Member MemberName="OnAllowUserToOrderColumnsChanged">
5670       <MemberSignature Language="C#" Value="protected virtual void OnAllowUserToOrderColumnsChanged (EventArgs e);" />
5671       <MemberType>Method</MemberType>
5672       <ReturnValue>
5673         <ReturnType>System.Void</ReturnType>
5674       </ReturnValue>
5675       <Parameters>
5676         <Parameter Name="e" Type="System.EventArgs" />
5677       </Parameters>
5678       <Docs>
5679         <since version=".NET 2.0" />
5680         <remarks>
5681           <attribution license="cc4" from="Microsoft" modified="false" />
5682           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5683           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAllowUserToOrderColumnsChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5684         </remarks>
5685         <summary>
5686           <attribution license="cc4" from="Microsoft" modified="false" />
5687           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToOrderColumnsChanged" /> event.</para>
5688         </summary>
5689         <param name="e">
5690           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.EventArgs" /> that contains the event data. </param>
5691       </Docs>
5692       <AssemblyInfo>
5693         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5694       </AssemblyInfo>
5695     </Member>
5696     <Member MemberName="OnAllowUserToResizeColumnsChanged">
5697       <MemberSignature Language="C#" Value="protected virtual void OnAllowUserToResizeColumnsChanged (EventArgs e);" />
5698       <MemberType>Method</MemberType>
5699       <ReturnValue>
5700         <ReturnType>System.Void</ReturnType>
5701       </ReturnValue>
5702       <Parameters>
5703         <Parameter Name="e" Type="System.EventArgs" />
5704       </Parameters>
5705       <Docs>
5706         <since version=".NET 2.0" />
5707         <remarks>
5708           <attribution license="cc4" from="Microsoft" modified="false" />
5709           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
5710           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAllowUserToResizeColumnsChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5711         </remarks>
5712         <summary>
5713           <attribution license="cc4" from="Microsoft" modified="false" />
5714           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToResizeColumnsChanged" /> event. </para>
5715         </summary>
5716         <param name="e">
5717           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5718       </Docs>
5719       <AssemblyInfo>
5720         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5721       </AssemblyInfo>
5722     </Member>
5723     <Member MemberName="OnAllowUserToResizeRowsChanged">
5724       <MemberSignature Language="C#" Value="protected virtual void OnAllowUserToResizeRowsChanged (EventArgs e);" />
5725       <MemberType>Method</MemberType>
5726       <ReturnValue>
5727         <ReturnType>System.Void</ReturnType>
5728       </ReturnValue>
5729       <Parameters>
5730         <Parameter Name="e" Type="System.EventArgs" />
5731       </Parameters>
5732       <Docs>
5733         <since version=".NET 2.0" />
5734         <remarks>
5735           <attribution license="cc4" from="Microsoft" modified="false" />
5736           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
5737           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAllowUserToResizeRowsChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5738         </remarks>
5739         <summary>
5740           <attribution license="cc4" from="Microsoft" modified="false" />
5741           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AllowUserToResizeRowsChanged" /> event. </para>
5742         </summary>
5743         <param name="e">
5744           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5745       </Docs>
5746       <AssemblyInfo>
5747         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5748       </AssemblyInfo>
5749     </Member>
5750     <Member MemberName="OnAlternatingRowsDefaultCellStyleChanged">
5751       <MemberSignature Language="C#" Value="protected virtual void OnAlternatingRowsDefaultCellStyleChanged (EventArgs e);" />
5752       <MemberType>Method</MemberType>
5753       <ReturnValue>
5754         <ReturnType>System.Void</ReturnType>
5755       </ReturnValue>
5756       <Parameters>
5757         <Parameter Name="e" Type="System.EventArgs" />
5758       </Parameters>
5759       <Docs>
5760         <since version=".NET 2.0" />
5761         <remarks>
5762           <attribution license="cc4" from="Microsoft" modified="false" />
5763           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5764           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAlternatingRowsDefaultCellStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5765         </remarks>
5766         <summary>
5767           <attribution license="cc4" from="Microsoft" modified="false" />
5768           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyleChanged" /> event.</para>
5769         </summary>
5770         <param name="e">
5771           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5772       </Docs>
5773       <AssemblyInfo>
5774         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5775       </AssemblyInfo>
5776     </Member>
5777     <Member MemberName="OnAutoGenerateColumnsChanged">
5778       <MemberSignature Language="C#" Value="protected virtual void OnAutoGenerateColumnsChanged (EventArgs e);" />
5779       <MemberType>Method</MemberType>
5780       <ReturnValue>
5781         <ReturnType>System.Void</ReturnType>
5782       </ReturnValue>
5783       <Parameters>
5784         <Parameter Name="e" Type="System.EventArgs" />
5785       </Parameters>
5786       <Docs>
5787         <since version=".NET 2.0" />
5788         <remarks>
5789           <attribution license="cc4" from="Microsoft" modified="false" />
5790           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5791           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAutoGenerateColumnsChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5792         </remarks>
5793         <summary>
5794           <attribution license="cc4" from="Microsoft" modified="false" />
5795           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoGenerateColumnsChanged" /> event.</para>
5796         </summary>
5797         <param name="e">
5798           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5799       </Docs>
5800       <AssemblyInfo>
5801         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5802       </AssemblyInfo>
5803     </Member>
5804     <Member MemberName="OnAutoSizeColumnModeChanged">
5805       <MemberSignature Language="C#" Value="protected virtual void OnAutoSizeColumnModeChanged (System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs e);" />
5806       <MemberType>Method</MemberType>
5807       <ReturnValue>
5808         <ReturnType>System.Void</ReturnType>
5809       </ReturnValue>
5810       <Parameters>
5811         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs" />
5812       </Parameters>
5813       <Docs>
5814         <since version=".NET 2.0" />
5815         <remarks>
5816           <attribution license="cc4" from="Microsoft" modified="false" />
5817           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
5818           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAutoSizeColumnModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5819         </remarks>
5820         <summary>
5821           <attribution license="cc4" from="Microsoft" modified="false" />
5822           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnModeChanged" /> event. </para>
5823         </summary>
5824         <param name="e">
5825           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnModeEventArgs" /> that contains the event data. </param>
5826       </Docs>
5827       <AssemblyInfo>
5828         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5829       </AssemblyInfo>
5830     </Member>
5831     <Member MemberName="OnAutoSizeColumnsModeChanged">
5832       <MemberSignature Language="C#" Value="protected virtual void OnAutoSizeColumnsModeChanged (System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs e);" />
5833       <MemberType>Method</MemberType>
5834       <ReturnValue>
5835         <ReturnType>System.Void</ReturnType>
5836       </ReturnValue>
5837       <Parameters>
5838         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs" />
5839       </Parameters>
5840       <Docs>
5841         <since version=".NET 2.0" />
5842         <remarks>
5843           <attribution license="cc4" from="Microsoft" modified="false" />
5844           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
5845           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAutoSizeColumnsModeChanged(System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5846         </remarks>
5847         <summary>
5848           <attribution license="cc4" from="Microsoft" modified="false" />
5849           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeColumnsModeChanged" /> event. </para>
5850         </summary>
5851         <param name="e">
5852           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeColumnsModeEventArgs" /> that contains the event data. </param>
5853       </Docs>
5854       <AssemblyInfo>
5855         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5856       </AssemblyInfo>
5857     </Member>
5858     <Member MemberName="OnAutoSizeRowsModeChanged">
5859       <MemberSignature Language="C#" Value="protected virtual void OnAutoSizeRowsModeChanged (System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e);" />
5860       <MemberType>Method</MemberType>
5861       <ReturnValue>
5862         <ReturnType>System.Void</ReturnType>
5863       </ReturnValue>
5864       <Parameters>
5865         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" />
5866       </Parameters>
5867       <Docs>
5868         <since version=".NET 2.0" />
5869         <remarks>
5870           <attribution license="cc4" from="Microsoft" modified="false" />
5871           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5872           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnAutoSizeRowsModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5873         </remarks>
5874         <summary>
5875           <attribution license="cc4" from="Microsoft" modified="false" />
5876           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.AutoSizeRowsModeChanged" /> event.</para>
5877         </summary>
5878         <param name="e">
5879           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data. </param>
5880       </Docs>
5881       <AssemblyInfo>
5882         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5883       </AssemblyInfo>
5884     </Member>
5885     <Member MemberName="OnBackgroundColorChanged">
5886       <MemberSignature Language="C#" Value="protected virtual void OnBackgroundColorChanged (EventArgs e);" />
5887       <MemberType>Method</MemberType>
5888       <ReturnValue>
5889         <ReturnType>System.Void</ReturnType>
5890       </ReturnValue>
5891       <Parameters>
5892         <Parameter Name="e" Type="System.EventArgs" />
5893       </Parameters>
5894       <Docs>
5895         <since version=".NET 2.0" />
5896         <remarks>
5897           <attribution license="cc4" from="Microsoft" modified="false" />
5898           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5899           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnBackgroundColorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5900         </remarks>
5901         <summary>
5902           <attribution license="cc4" from="Microsoft" modified="false" />
5903           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.BackgroundColorChanged" /> event.</para>
5904         </summary>
5905         <param name="e">
5906           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5907       </Docs>
5908       <AssemblyInfo>
5909         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5910       </AssemblyInfo>
5911     </Member>
5912     <Member MemberName="OnBindingContextChanged">
5913       <MemberSignature Language="C#" Value="protected override void OnBindingContextChanged (EventArgs e);" />
5914       <MemberType>Method</MemberType>
5915       <ReturnValue>
5916         <ReturnType>System.Void</ReturnType>
5917       </ReturnValue>
5918       <Parameters>
5919         <Parameter Name="e" Type="System.EventArgs" />
5920       </Parameters>
5921       <Docs>
5922         <since version=".NET 2.0" />
5923         <remarks>
5924           <attribution license="cc4" from="Microsoft" modified="false" />
5925           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5926           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnBindingContextChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5927         </remarks>
5928         <summary>
5929           <attribution license="cc4" from="Microsoft" modified="false" />
5930           <para>Raises the <see cref="E:System.Windows.Forms.Control.BindingContextChanged" /> event.</para>
5931         </summary>
5932         <param name="e">
5933           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5934       </Docs>
5935       <AssemblyInfo>
5936         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5937       </AssemblyInfo>
5938     </Member>
5939     <Member MemberName="OnBorderStyleChanged">
5940       <MemberSignature Language="C#" Value="protected virtual void OnBorderStyleChanged (EventArgs e);" />
5941       <MemberType>Method</MemberType>
5942       <ReturnValue>
5943         <ReturnType>System.Void</ReturnType>
5944       </ReturnValue>
5945       <Parameters>
5946         <Parameter Name="e" Type="System.EventArgs" />
5947       </Parameters>
5948       <Docs>
5949         <since version=".NET 2.0" />
5950         <remarks>
5951           <attribution license="cc4" from="Microsoft" modified="false" />
5952           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5953           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnBorderStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5954         </remarks>
5955         <summary>
5956           <attribution license="cc4" from="Microsoft" modified="false" />
5957           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.BorderStyleChanged" /> event.</para>
5958         </summary>
5959         <param name="e">
5960           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
5961       </Docs>
5962       <AssemblyInfo>
5963         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5964       </AssemblyInfo>
5965     </Member>
5966     <Member MemberName="OnCancelRowEdit">
5967       <MemberSignature Language="C#" Value="protected virtual void OnCancelRowEdit (System.Windows.Forms.QuestionEventArgs e);" />
5968       <MemberType>Method</MemberType>
5969       <ReturnValue>
5970         <ReturnType>System.Void</ReturnType>
5971       </ReturnValue>
5972       <Parameters>
5973         <Parameter Name="e" Type="System.Windows.Forms.QuestionEventArgs" />
5974       </Parameters>
5975       <Docs>
5976         <since version=".NET 2.0" />
5977         <remarks>
5978           <attribution license="cc4" from="Microsoft" modified="false" />
5979           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
5980           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCancelRowEdit(System.Windows.Forms.QuestionEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
5981         </remarks>
5982         <summary>
5983           <attribution license="cc4" from="Microsoft" modified="false" />
5984           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CancelRowEdit" /> event.</para>
5985         </summary>
5986         <param name="e">
5987           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.QuestionEventArgs" /> that contains the event data. </param>
5988       </Docs>
5989       <AssemblyInfo>
5990         <AssemblyVersion>2.0.0.0</AssemblyVersion>
5991       </AssemblyInfo>
5992     </Member>
5993     <Member MemberName="OnCellBeginEdit">
5994       <MemberSignature Language="C#" Value="protected virtual void OnCellBeginEdit (System.Windows.Forms.DataGridViewCellCancelEventArgs e);" />
5995       <MemberType>Method</MemberType>
5996       <ReturnValue>
5997         <ReturnType>System.Void</ReturnType>
5998       </ReturnValue>
5999       <Parameters>
6000         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellCancelEventArgs" />
6001       </Parameters>
6002       <Docs>
6003         <since version=".NET 2.0" />
6004         <remarks>
6005           <attribution license="cc4" from="Microsoft" modified="false" />
6006           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6007           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellBeginEdit(System.Windows.Forms.DataGridViewCellCancelEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6008         </remarks>
6009         <summary>
6010           <attribution license="cc4" from="Microsoft" modified="false" />
6011           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellBeginEdit" /> event.</para>
6012         </summary>
6013         <param name="e">
6014           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellCancelEventArgs" /> that contains the event data. </param>
6015       </Docs>
6016       <AssemblyInfo>
6017         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6018       </AssemblyInfo>
6019     </Member>
6020     <Member MemberName="OnCellBorderStyleChanged">
6021       <MemberSignature Language="C#" Value="protected virtual void OnCellBorderStyleChanged (EventArgs e);" />
6022       <MemberType>Method</MemberType>
6023       <ReturnValue>
6024         <ReturnType>System.Void</ReturnType>
6025       </ReturnValue>
6026       <Parameters>
6027         <Parameter Name="e" Type="System.EventArgs" />
6028       </Parameters>
6029       <Docs>
6030         <since version=".NET 2.0" />
6031         <remarks>
6032           <attribution license="cc4" from="Microsoft" modified="false" />
6033           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6034           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellBorderStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6035         </remarks>
6036         <summary>
6037           <attribution license="cc4" from="Microsoft" modified="false" />
6038           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellBorderStyleChanged" /> event.</para>
6039         </summary>
6040         <param name="e">
6041           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
6042       </Docs>
6043       <AssemblyInfo>
6044         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6045       </AssemblyInfo>
6046     </Member>
6047     <Member MemberName="OnCellClick">
6048       <MemberSignature Language="C#" Value="protected virtual void OnCellClick (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6049       <MemberType>Method</MemberType>
6050       <ReturnValue>
6051         <ReturnType>System.Void</ReturnType>
6052       </ReturnValue>
6053       <Parameters>
6054         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6055       </Parameters>
6056       <Docs>
6057         <since version=".NET 2.0" />
6058         <remarks>
6059           <attribution license="cc4" from="Microsoft" modified="false" />
6060           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6061           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6062         </remarks>
6063         <summary>
6064           <attribution license="cc4" from="Microsoft" modified="false" />
6065           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellClick" /> event.</para>
6066         </summary>
6067         <param name="e">
6068           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6069       </Docs>
6070       <AssemblyInfo>
6071         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6072       </AssemblyInfo>
6073     </Member>
6074     <Member MemberName="OnCellContentClick">
6075       <MemberSignature Language="C#" Value="protected virtual void OnCellContentClick (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6076       <MemberType>Method</MemberType>
6077       <ReturnValue>
6078         <ReturnType>System.Void</ReturnType>
6079       </ReturnValue>
6080       <Parameters>
6081         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6082       </Parameters>
6083       <Docs>
6084         <since version=".NET 2.0" />
6085         <remarks>
6086           <attribution license="cc4" from="Microsoft" modified="false" />
6087           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6088           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellContentClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6089         </remarks>
6090         <summary>
6091           <attribution license="cc4" from="Microsoft" modified="false" />
6092           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContentClick" /> event.</para>
6093         </summary>
6094         <param name="e">
6095           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains information regarding the cell whose content was clicked.</param>
6096       </Docs>
6097       <AssemblyInfo>
6098         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6099       </AssemblyInfo>
6100     </Member>
6101     <Member MemberName="OnCellContentDoubleClick">
6102       <MemberSignature Language="C#" Value="protected virtual void OnCellContentDoubleClick (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6103       <MemberType>Method</MemberType>
6104       <ReturnValue>
6105         <ReturnType>System.Void</ReturnType>
6106       </ReturnValue>
6107       <Parameters>
6108         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6109       </Parameters>
6110       <Docs>
6111         <since version=".NET 2.0" />
6112         <remarks>
6113           <attribution license="cc4" from="Microsoft" modified="false" />
6114           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6115           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellContentDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6116         </remarks>
6117         <summary>
6118           <attribution license="cc4" from="Microsoft" modified="false" />
6119           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContentDoubleClick" /> event. </para>
6120         </summary>
6121         <param name="e">
6122           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6123       </Docs>
6124       <AssemblyInfo>
6125         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6126       </AssemblyInfo>
6127     </Member>
6128     <Member MemberName="OnCellContextMenuStripChanged">
6129       <MemberSignature Language="C#" Value="protected virtual void OnCellContextMenuStripChanged (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6130       <MemberType>Method</MemberType>
6131       <ReturnValue>
6132         <ReturnType>System.Void</ReturnType>
6133       </ReturnValue>
6134       <Parameters>
6135         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6136       </Parameters>
6137       <Docs>
6138         <since version=".NET 2.0" />
6139         <remarks>
6140           <attribution license="cc4" from="Microsoft" modified="false" />
6141           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6142           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellContextMenuStripChanged(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6143         </remarks>
6144         <summary>
6145           <attribution license="cc4" from="Microsoft" modified="false" />
6146           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripChanged" /> event. </para>
6147         </summary>
6148         <param name="e">
6149           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6150       </Docs>
6151       <AssemblyInfo>
6152         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6153       </AssemblyInfo>
6154     </Member>
6155     <Member MemberName="OnCellContextMenuStripNeeded">
6156       <MemberSignature Language="C#" Value="protected virtual void OnCellContextMenuStripNeeded (System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs e);" />
6157       <MemberType>Method</MemberType>
6158       <ReturnValue>
6159         <ReturnType>System.Void</ReturnType>
6160       </ReturnValue>
6161       <Parameters>
6162         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs" />
6163       </Parameters>
6164       <Docs>
6165         <since version=".NET 2.0" />
6166         <remarks>
6167           <attribution license="cc4" from="Microsoft" modified="false" />
6168           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6169           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellContextMenuStripNeeded(System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6170         </remarks>
6171         <summary>
6172           <attribution license="cc4" from="Microsoft" modified="false" />
6173           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> event. </para>
6174         </summary>
6175         <param name="e">
6176           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellContextMenuStripNeededEventArgs" /> that contains the event data. </param>
6177       </Docs>
6178       <AssemblyInfo>
6179         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6180       </AssemblyInfo>
6181     </Member>
6182     <Member MemberName="OnCellDoubleClick">
6183       <MemberSignature Language="C#" Value="protected virtual void OnCellDoubleClick (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6184       <MemberType>Method</MemberType>
6185       <ReturnValue>
6186         <ReturnType>System.Void</ReturnType>
6187       </ReturnValue>
6188       <Parameters>
6189         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6190       </Parameters>
6191       <Docs>
6192         <since version=".NET 2.0" />
6193         <remarks>
6194           <attribution license="cc4" from="Microsoft" modified="false" />
6195           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6196           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellDoubleClick(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6197         </remarks>
6198         <summary>
6199           <attribution license="cc4" from="Microsoft" modified="false" />
6200           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellDoubleClick" /> event. </para>
6201         </summary>
6202         <param name="e">
6203           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6204       </Docs>
6205       <AssemblyInfo>
6206         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6207       </AssemblyInfo>
6208     </Member>
6209     <Member MemberName="OnCellEndEdit">
6210       <MemberSignature Language="C#" Value="protected virtual void OnCellEndEdit (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6211       <MemberType>Method</MemberType>
6212       <ReturnValue>
6213         <ReturnType>System.Void</ReturnType>
6214       </ReturnValue>
6215       <Parameters>
6216         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6217       </Parameters>
6218       <Docs>
6219         <since version=".NET 2.0" />
6220         <remarks>
6221           <attribution license="cc4" from="Microsoft" modified="false" />
6222           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6223           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellEndEdit(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6224         </remarks>
6225         <summary>
6226           <attribution license="cc4" from="Microsoft" modified="false" />
6227           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellEndEdit" /> event.</para>
6228         </summary>
6229         <param name="e">
6230           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6231       </Docs>
6232       <AssemblyInfo>
6233         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6234       </AssemblyInfo>
6235     </Member>
6236     <Member MemberName="OnCellEnter">
6237       <MemberSignature Language="C#" Value="protected virtual void OnCellEnter (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6238       <MemberType>Method</MemberType>
6239       <ReturnValue>
6240         <ReturnType>System.Void</ReturnType>
6241       </ReturnValue>
6242       <Parameters>
6243         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6244       </Parameters>
6245       <Docs>
6246         <since version=".NET 2.0" />
6247         <remarks>
6248           <attribution license="cc4" from="Microsoft" modified="false" />
6249           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6250           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellEnter(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6251         </remarks>
6252         <summary>
6253           <attribution license="cc4" from="Microsoft" modified="false" />
6254           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellEnter" /> event.</para>
6255         </summary>
6256         <param name="e">
6257           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6258       </Docs>
6259       <AssemblyInfo>
6260         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6261       </AssemblyInfo>
6262     </Member>
6263     <Member MemberName="OnCellErrorTextChanged">
6264       <MemberSignature Language="C#" Value="protected virtual void OnCellErrorTextChanged (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6265       <MemberType>Method</MemberType>
6266       <AssemblyInfo>
6267         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6268       </AssemblyInfo>
6269       <ReturnValue>
6270         <ReturnType>System.Void</ReturnType>
6271       </ReturnValue>
6272       <Parameters>
6273         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6274       </Parameters>
6275       <Docs>
6276         <remarks>
6277           <attribution license="cc4" from="Microsoft" modified="false" />
6278           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6279           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellErrorTextChanged(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6280         </remarks>
6281         <summary>
6282           <attribution license="cc4" from="Microsoft" modified="false" />
6283           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextChanged" /> event.</para>
6284         </summary>
6285         <param name="e">
6286           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6287       </Docs>
6288     </Member>
6289     <Member MemberName="OnCellErrorTextNeeded">
6290       <MemberSignature Language="C#" Value="protected virtual void OnCellErrorTextNeeded (System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs e);" />
6291       <MemberType>Method</MemberType>
6292       <ReturnValue>
6293         <ReturnType>System.Void</ReturnType>
6294       </ReturnValue>
6295       <Parameters>
6296         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs" />
6297       </Parameters>
6298       <Docs>
6299         <since version=".NET 2.0" />
6300         <remarks>
6301           <attribution license="cc4" from="Microsoft" modified="false" />
6302           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6303           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellErrorTextNeeded(System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6304         </remarks>
6305         <summary>
6306           <attribution license="cc4" from="Microsoft" modified="false" />
6307           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event. </para>
6308         </summary>
6309         <param name="e">
6310           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellErrorTextNeededEventArgs" /> that contains the event data. </param>
6311       </Docs>
6312       <AssemblyInfo>
6313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6314       </AssemblyInfo>
6315     </Member>
6316     <Member MemberName="OnCellFormatting">
6317       <MemberSignature Language="C#" Value="protected virtual void OnCellFormatting (System.Windows.Forms.DataGridViewCellFormattingEventArgs e);" />
6318       <MemberType>Method</MemberType>
6319       <ReturnValue>
6320         <ReturnType>System.Void</ReturnType>
6321       </ReturnValue>
6322       <Parameters>
6323         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellFormattingEventArgs" />
6324       </Parameters>
6325       <Docs>
6326         <since version=".NET 2.0" />
6327         <remarks>
6328           <attribution license="cc4" from="Microsoft" modified="false" />
6329           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6330           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellFormatting(System.Windows.Forms.DataGridViewCellFormattingEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6331         </remarks>
6332         <summary>
6333           <attribution license="cc4" from="Microsoft" modified="false" />
6334           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellFormatting" /> event.</para>
6335         </summary>
6336         <param name="e">
6337           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellFormattingEventArgs" /> that contains the event data. </param>
6338       </Docs>
6339       <AssemblyInfo>
6340         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6341       </AssemblyInfo>
6342     </Member>
6343     <Member MemberName="OnCellLeave">
6344       <MemberSignature Language="C#" Value="protected virtual void OnCellLeave (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6345       <MemberType>Method</MemberType>
6346       <ReturnValue>
6347         <ReturnType>System.Void</ReturnType>
6348       </ReturnValue>
6349       <Parameters>
6350         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6351       </Parameters>
6352       <Docs>
6353         <since version=".NET 2.0" />
6354         <remarks>
6355           <attribution license="cc4" from="Microsoft" modified="false" />
6356           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6357           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellLeave(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6358         </remarks>
6359         <summary>
6360           <attribution license="cc4" from="Microsoft" modified="false" />
6361           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellLeave" /> event.</para>
6362         </summary>
6363         <param name="e">
6364           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6365       </Docs>
6366       <AssemblyInfo>
6367         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6368       </AssemblyInfo>
6369     </Member>
6370     <Member MemberName="OnCellMouseClick">
6371       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
6372       <MemberType>Method</MemberType>
6373       <ReturnValue>
6374         <ReturnType>System.Void</ReturnType>
6375       </ReturnValue>
6376       <Parameters>
6377         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
6378       </Parameters>
6379       <Docs>
6380         <since version=".NET 2.0" />
6381         <remarks>
6382           <attribution license="cc4" from="Microsoft" modified="false" />
6383           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6384           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6385         </remarks>
6386         <summary>
6387           <attribution license="cc4" from="Microsoft" modified="false" />
6388           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseClick" /> event.</para>
6389         </summary>
6390         <param name="e">
6391           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data. </param>
6392       </Docs>
6393       <AssemblyInfo>
6394         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6395       </AssemblyInfo>
6396     </Member>
6397     <Member MemberName="OnCellMouseDoubleClick">
6398       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseDoubleClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
6399       <MemberType>Method</MemberType>
6400       <ReturnValue>
6401         <ReturnType>System.Void</ReturnType>
6402       </ReturnValue>
6403       <Parameters>
6404         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
6405       </Parameters>
6406       <Docs>
6407         <since version=".NET 2.0" />
6408         <remarks>
6409           <attribution license="cc4" from="Microsoft" modified="false" />
6410           <para>Typically, double-clicking a cell puts the cell in edit mode.</para>
6411           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6412           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6413         </remarks>
6414         <summary>
6415           <attribution license="cc4" from="Microsoft" modified="false" />
6416           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseDoubleClick" /> event. </para>
6417         </summary>
6418         <param name="e">
6419           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data.</param>
6420       </Docs>
6421       <AssemblyInfo>
6422         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6423       </AssemblyInfo>
6424     </Member>
6425     <Member MemberName="OnCellMouseDown">
6426       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseDown (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
6427       <MemberType>Method</MemberType>
6428       <ReturnValue>
6429         <ReturnType>System.Void</ReturnType>
6430       </ReturnValue>
6431       <Parameters>
6432         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
6433       </Parameters>
6434       <Docs>
6435         <since version=".NET 2.0" />
6436         <remarks>
6437           <attribution license="cc4" from="Microsoft" modified="false" />
6438           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6439           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseDown(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6440         </remarks>
6441         <summary>
6442           <attribution license="cc4" from="Microsoft" modified="false" />
6443           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseDown" /> event.</para>
6444         </summary>
6445         <param name="e">
6446           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data. </param>
6447       </Docs>
6448       <AssemblyInfo>
6449         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6450       </AssemblyInfo>
6451     </Member>
6452     <Member MemberName="OnCellMouseEnter">
6453       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseEnter (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6454       <MemberType>Method</MemberType>
6455       <ReturnValue>
6456         <ReturnType>System.Void</ReturnType>
6457       </ReturnValue>
6458       <Parameters>
6459         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6460       </Parameters>
6461       <Docs>
6462         <since version=".NET 2.0" />
6463         <remarks>
6464           <attribution license="cc4" from="Microsoft" modified="false" />
6465           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6466           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseEnter(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6467         </remarks>
6468         <summary>
6469           <attribution license="cc4" from="Microsoft" modified="false" />
6470           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseEnter" /> event.</para>
6471         </summary>
6472         <param name="e">
6473           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6474       </Docs>
6475       <AssemblyInfo>
6476         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6477       </AssemblyInfo>
6478     </Member>
6479     <Member MemberName="OnCellMouseLeave">
6480       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseLeave (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6481       <MemberType>Method</MemberType>
6482       <ReturnValue>
6483         <ReturnType>System.Void</ReturnType>
6484       </ReturnValue>
6485       <Parameters>
6486         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6487       </Parameters>
6488       <Docs>
6489         <since version=".NET 2.0" />
6490         <remarks>
6491           <attribution license="cc4" from="Microsoft" modified="false" />
6492           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6493           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseLeave(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6494         </remarks>
6495         <summary>
6496           <attribution license="cc4" from="Microsoft" modified="false" />
6497           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseLeave" /> event.</para>
6498         </summary>
6499         <param name="e">
6500           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6501       </Docs>
6502       <AssemblyInfo>
6503         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6504       </AssemblyInfo>
6505     </Member>
6506     <Member MemberName="OnCellMouseMove">
6507       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseMove (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
6508       <MemberType>Method</MemberType>
6509       <ReturnValue>
6510         <ReturnType>System.Void</ReturnType>
6511       </ReturnValue>
6512       <Parameters>
6513         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
6514       </Parameters>
6515       <Docs>
6516         <since version=".NET 2.0" />
6517         <remarks>
6518           <attribution license="cc4" from="Microsoft" modified="false" />
6519           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6520           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseMove(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6521         </remarks>
6522         <summary>
6523           <attribution license="cc4" from="Microsoft" modified="false" />
6524           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseMove" /> event.</para>
6525         </summary>
6526         <param name="e">
6527           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data. </param>
6528       </Docs>
6529       <AssemblyInfo>
6530         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6531       </AssemblyInfo>
6532     </Member>
6533     <Member MemberName="OnCellMouseUp">
6534       <MemberSignature Language="C#" Value="protected virtual void OnCellMouseUp (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
6535       <MemberType>Method</MemberType>
6536       <ReturnValue>
6537         <ReturnType>System.Void</ReturnType>
6538       </ReturnValue>
6539       <Parameters>
6540         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
6541       </Parameters>
6542       <Docs>
6543         <since version=".NET 2.0" />
6544         <remarks>
6545           <attribution license="cc4" from="Microsoft" modified="false" />
6546           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6547           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellMouseUp(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6548         </remarks>
6549         <summary>
6550           <attribution license="cc4" from="Microsoft" modified="false" />
6551           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellMouseUp" /> event.</para>
6552         </summary>
6553         <param name="e">
6554           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data. </param>
6555       </Docs>
6556       <AssemblyInfo>
6557         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6558       </AssemblyInfo>
6559     </Member>
6560     <Member MemberName="OnCellPainting">
6561       <MemberSignature Language="C#" Value="protected virtual void OnCellPainting (System.Windows.Forms.DataGridViewCellPaintingEventArgs e);" />
6562       <MemberType>Method</MemberType>
6563       <ReturnValue>
6564         <ReturnType>System.Void</ReturnType>
6565       </ReturnValue>
6566       <Parameters>
6567         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellPaintingEventArgs" />
6568       </Parameters>
6569       <Docs>
6570         <since version=".NET 2.0" />
6571         <remarks>
6572           <attribution license="cc4" from="Microsoft" modified="false" />
6573           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6574           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellPainting(System.Windows.Forms.DataGridViewCellPaintingEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6575         </remarks>
6576         <summary>
6577           <attribution license="cc4" from="Microsoft" modified="false" />
6578           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellPainting" /> event.</para>
6579         </summary>
6580         <param name="e">
6581           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellPaintingEventArgs" /> that contains the event data. </param>
6582       </Docs>
6583       <AssemblyInfo>
6584         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6585       </AssemblyInfo>
6586     </Member>
6587     <Member MemberName="OnCellParsing">
6588       <MemberSignature Language="C#" Value="protected virtual void OnCellParsing (System.Windows.Forms.DataGridViewCellParsingEventArgs e);" />
6589       <MemberType>Method</MemberType>
6590       <AssemblyInfo>
6591         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6592       </AssemblyInfo>
6593       <ReturnValue>
6594         <ReturnType>System.Void</ReturnType>
6595       </ReturnValue>
6596       <Parameters>
6597         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellParsingEventArgs" />
6598       </Parameters>
6599       <Docs>
6600         <remarks>
6601           <attribution license="cc4" from="Microsoft" modified="false" />
6602           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6603           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellParsing(System.Windows.Forms.DataGridViewCellParsingEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6604         </remarks>
6605         <summary>
6606           <attribution license="cc4" from="Microsoft" modified="false" />
6607           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellParsing" /> event.</para>
6608         </summary>
6609         <param name="e">
6610           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellParsingEventArgs" /> that contains the event data. </param>
6611       </Docs>
6612     </Member>
6613     <Member MemberName="OnCellStateChanged">
6614       <MemberSignature Language="C#" Value="protected virtual void OnCellStateChanged (System.Windows.Forms.DataGridViewCellStateChangedEventArgs e);" />
6615       <MemberType>Method</MemberType>
6616       <ReturnValue>
6617         <ReturnType>System.Void</ReturnType>
6618       </ReturnValue>
6619       <Parameters>
6620         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellStateChangedEventArgs" />
6621       </Parameters>
6622       <Docs>
6623         <since version=".NET 2.0" />
6624         <remarks>
6625           <attribution license="cc4" from="Microsoft" modified="false" />
6626           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6627           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellStateChanged(System.Windows.Forms.DataGridViewCellStateChangedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6628         </remarks>
6629         <summary>
6630           <attribution license="cc4" from="Microsoft" modified="false" />
6631           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellStateChanged" /> event.</para>
6632         </summary>
6633         <param name="e">
6634           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellStateChangedEventArgs" /> that contains the event data. </param>
6635       </Docs>
6636       <AssemblyInfo>
6637         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6638       </AssemblyInfo>
6639     </Member>
6640     <Member MemberName="OnCellStyleChanged">
6641       <MemberSignature Language="C#" Value="protected virtual void OnCellStyleChanged (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6642       <MemberType>Method</MemberType>
6643       <ReturnValue>
6644         <ReturnType>System.Void</ReturnType>
6645       </ReturnValue>
6646       <Parameters>
6647         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6648       </Parameters>
6649       <Docs>
6650         <since version=".NET 2.0" />
6651         <remarks>
6652           <attribution license="cc4" from="Microsoft" modified="false" />
6653           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6654           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellStyleChanged(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6655         </remarks>
6656         <summary>
6657           <attribution license="cc4" from="Microsoft" modified="false" />
6658           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellStyleChanged" /> event.</para>
6659         </summary>
6660         <param name="e">
6661           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6662       </Docs>
6663       <AssemblyInfo>
6664         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6665       </AssemblyInfo>
6666     </Member>
6667     <Member MemberName="OnCellStyleContentChanged">
6668       <MemberSignature Language="C#" Value="protected virtual void OnCellStyleContentChanged (System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs e);" />
6669       <MemberType>Method</MemberType>
6670       <ReturnValue>
6671         <ReturnType>System.Void</ReturnType>
6672       </ReturnValue>
6673       <Parameters>
6674         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs" />
6675       </Parameters>
6676       <Docs>
6677         <since version=".NET 2.0" />
6678         <remarks>
6679           <attribution license="cc4" from="Microsoft" modified="false" />
6680           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6681           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellStyleContentChanged(System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6682         </remarks>
6683         <summary>
6684           <attribution license="cc4" from="Microsoft" modified="false" />
6685           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellStyleContentChanged" /> event.</para>
6686         </summary>
6687         <param name="e">
6688           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellStyleContentChangedEventArgs" /> that contains the event data. </param>
6689       </Docs>
6690       <AssemblyInfo>
6691         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6692       </AssemblyInfo>
6693     </Member>
6694     <Member MemberName="OnCellToolTipTextChanged">
6695       <MemberSignature Language="C#" Value="protected virtual void OnCellToolTipTextChanged (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6696       <MemberType>Method</MemberType>
6697       <ReturnValue>
6698         <ReturnType>System.Void</ReturnType>
6699       </ReturnValue>
6700       <Parameters>
6701         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6702       </Parameters>
6703       <Docs>
6704         <since version=".NET 2.0" />
6705         <remarks>
6706           <attribution license="cc4" from="Microsoft" modified="false" />
6707           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6708           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellToolTipTextChanged(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6709         </remarks>
6710         <summary>
6711           <attribution license="cc4" from="Microsoft" modified="false" />
6712           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextChanged" /> event.</para>
6713         </summary>
6714         <param name="e">
6715           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains information about the cell.</param>
6716       </Docs>
6717       <AssemblyInfo>
6718         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6719       </AssemblyInfo>
6720     </Member>
6721     <Member MemberName="OnCellToolTipTextNeeded">
6722       <MemberSignature Language="C#" Value="protected virtual void OnCellToolTipTextNeeded (System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs e);" />
6723       <MemberType>Method</MemberType>
6724       <ReturnValue>
6725         <ReturnType>System.Void</ReturnType>
6726       </ReturnValue>
6727       <Parameters>
6728         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs" />
6729       </Parameters>
6730       <Docs>
6731         <since version=".NET 2.0" />
6732         <remarks>
6733           <attribution license="cc4" from="Microsoft" modified="false" />
6734           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6735           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellToolTipTextNeeded(System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6736         </remarks>
6737         <summary>
6738           <attribution license="cc4" from="Microsoft" modified="false" />
6739           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event. </para>
6740         </summary>
6741         <param name="e">
6742           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs" /> that contains the event data. </param>
6743       </Docs>
6744       <AssemblyInfo>
6745         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6746       </AssemblyInfo>
6747     </Member>
6748     <Member MemberName="OnCellValidated">
6749       <MemberSignature Language="C#" Value="protected virtual void OnCellValidated (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6750       <MemberType>Method</MemberType>
6751       <ReturnValue>
6752         <ReturnType>System.Void</ReturnType>
6753       </ReturnValue>
6754       <Parameters>
6755         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6756       </Parameters>
6757       <Docs>
6758         <since version=".NET 2.0" />
6759         <remarks>
6760           <attribution license="cc4" from="Microsoft" modified="false" />
6761           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6762           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellValidated(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6763         </remarks>
6764         <summary>
6765           <attribution license="cc4" from="Microsoft" modified="false" />
6766           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValidated" /> event.</para>
6767         </summary>
6768         <param name="e">
6769           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6770       </Docs>
6771       <AssemblyInfo>
6772         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6773       </AssemblyInfo>
6774     </Member>
6775     <Member MemberName="OnCellValidating">
6776       <MemberSignature Language="C#" Value="protected virtual void OnCellValidating (System.Windows.Forms.DataGridViewCellValidatingEventArgs e);" />
6777       <MemberType>Method</MemberType>
6778       <ReturnValue>
6779         <ReturnType>System.Void</ReturnType>
6780       </ReturnValue>
6781       <Parameters>
6782         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellValidatingEventArgs" />
6783       </Parameters>
6784       <Docs>
6785         <since version=".NET 2.0" />
6786         <remarks>
6787           <attribution license="cc4" from="Microsoft" modified="false" />
6788           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6789           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellValidating(System.Windows.Forms.DataGridViewCellValidatingEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6790         </remarks>
6791         <summary>
6792           <attribution license="cc4" from="Microsoft" modified="false" />
6793           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValidating" /> event. </para>
6794         </summary>
6795         <param name="e">
6796           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellValidatingEventArgs" /> that contains the event data. </param>
6797       </Docs>
6798       <AssemblyInfo>
6799         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6800       </AssemblyInfo>
6801     </Member>
6802     <Member MemberName="OnCellValueChanged">
6803       <MemberSignature Language="C#" Value="protected virtual void OnCellValueChanged (System.Windows.Forms.DataGridViewCellEventArgs e);" />
6804       <MemberType>Method</MemberType>
6805       <ReturnValue>
6806         <ReturnType>System.Void</ReturnType>
6807       </ReturnValue>
6808       <Parameters>
6809         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
6810       </Parameters>
6811       <Docs>
6812         <since version=".NET 2.0" />
6813         <remarks>
6814           <attribution license="cc4" from="Microsoft" modified="false" />
6815           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6816           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellValueChanged(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6817         </remarks>
6818         <summary>
6819           <attribution license="cc4" from="Microsoft" modified="false" />
6820           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValueChanged" /> event.</para>
6821         </summary>
6822         <param name="e">
6823           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
6824       </Docs>
6825       <AssemblyInfo>
6826         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6827       </AssemblyInfo>
6828     </Member>
6829     <Member MemberName="OnCellValueNeeded">
6830       <MemberSignature Language="C#" Value="protected virtual void OnCellValueNeeded (System.Windows.Forms.DataGridViewCellValueEventArgs e);" />
6831       <MemberType>Method</MemberType>
6832       <ReturnValue>
6833         <ReturnType>System.Void</ReturnType>
6834       </ReturnValue>
6835       <Parameters>
6836         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellValueEventArgs" />
6837       </Parameters>
6838       <Docs>
6839         <since version=".NET 2.0" />
6840         <remarks>
6841           <attribution license="cc4" from="Microsoft" modified="false" />
6842           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6843           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellValueNeeded(System.Windows.Forms.DataGridViewCellValueEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6844         </remarks>
6845         <summary>
6846           <attribution license="cc4" from="Microsoft" modified="false" />
6847           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event.</para>
6848         </summary>
6849         <param name="e">
6850           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellValueEventArgs" /> that contains the event data. </param>
6851       </Docs>
6852       <AssemblyInfo>
6853         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6854       </AssemblyInfo>
6855     </Member>
6856     <Member MemberName="OnCellValuePushed">
6857       <MemberSignature Language="C#" Value="protected virtual void OnCellValuePushed (System.Windows.Forms.DataGridViewCellValueEventArgs e);" />
6858       <MemberType>Method</MemberType>
6859       <ReturnValue>
6860         <ReturnType>System.Void</ReturnType>
6861       </ReturnValue>
6862       <Parameters>
6863         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellValueEventArgs" />
6864       </Parameters>
6865       <Docs>
6866         <since version=".NET 2.0" />
6867         <remarks>
6868           <attribution license="cc4" from="Microsoft" modified="false" />
6869           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6870           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCellValuePushed(System.Windows.Forms.DataGridViewCellValueEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6871         </remarks>
6872         <summary>
6873           <attribution license="cc4" from="Microsoft" modified="false" />
6874           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event.</para>
6875         </summary>
6876         <param name="e">
6877           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellValueEventArgs" /> that contains the event data. </param>
6878       </Docs>
6879       <AssemblyInfo>
6880         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6881       </AssemblyInfo>
6882     </Member>
6883     <Member MemberName="OnColumnAdded">
6884       <MemberSignature Language="C#" Value="protected virtual void OnColumnAdded (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
6885       <MemberType>Method</MemberType>
6886       <ReturnValue>
6887         <ReturnType>System.Void</ReturnType>
6888       </ReturnValue>
6889       <Parameters>
6890         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
6891       </Parameters>
6892       <Docs>
6893         <since version=".NET 2.0" />
6894         <remarks>
6895           <attribution license="cc4" from="Microsoft" modified="false" />
6896           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6897           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnAdded(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6898         </remarks>
6899         <summary>
6900           <attribution license="cc4" from="Microsoft" modified="false" />
6901           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnAdded" /> event. </para>
6902         </summary>
6903         <param name="e">
6904           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
6905       </Docs>
6906       <AssemblyInfo>
6907         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6908       </AssemblyInfo>
6909     </Member>
6910     <Member MemberName="OnColumnContextMenuStripChanged">
6911       <MemberSignature Language="C#" Value="protected virtual void OnColumnContextMenuStripChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
6912       <MemberType>Method</MemberType>
6913       <AssemblyInfo>
6914         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6915       </AssemblyInfo>
6916       <ReturnValue>
6917         <ReturnType>System.Void</ReturnType>
6918       </ReturnValue>
6919       <Parameters>
6920         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
6921       </Parameters>
6922       <Docs>
6923         <remarks>
6924           <attribution license="cc4" from="Microsoft" modified="false" />
6925           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
6926           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnContextMenuStripChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6927         </remarks>
6928         <summary>
6929           <attribution license="cc4" from="Microsoft" modified="false" />
6930           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnContextMenuStripChanged" /> event. </para>
6931         </summary>
6932         <param name="e">
6933           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
6934       </Docs>
6935     </Member>
6936     <Member MemberName="OnColumnDataPropertyNameChanged">
6937       <MemberSignature Language="C#" Value="protected virtual void OnColumnDataPropertyNameChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
6938       <MemberType>Method</MemberType>
6939       <AssemblyInfo>
6940         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6941       </AssemblyInfo>
6942       <ReturnValue>
6943         <ReturnType>System.Void</ReturnType>
6944       </ReturnValue>
6945       <Parameters>
6946         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
6947       </Parameters>
6948       <Docs>
6949         <remarks>
6950           <attribution license="cc4" from="Microsoft" modified="false" />
6951           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6952           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnDataPropertyNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6953         </remarks>
6954         <summary>
6955           <attribution license="cc4" from="Microsoft" modified="false" />
6956           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDataPropertyNameChanged" /> event.</para>
6957         </summary>
6958         <param name="e">
6959           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
6960       </Docs>
6961     </Member>
6962     <Member MemberName="OnColumnDefaultCellStyleChanged">
6963       <MemberSignature Language="C#" Value="protected virtual void OnColumnDefaultCellStyleChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
6964       <MemberType>Method</MemberType>
6965       <AssemblyInfo>
6966         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6967       </AssemblyInfo>
6968       <ReturnValue>
6969         <ReturnType>System.Void</ReturnType>
6970       </ReturnValue>
6971       <Parameters>
6972         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
6973       </Parameters>
6974       <Docs>
6975         <remarks>
6976           <attribution license="cc4" from="Microsoft" modified="false" />
6977           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
6978           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnDefaultCellStyleChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
6979         </remarks>
6980         <summary>
6981           <attribution license="cc4" from="Microsoft" modified="false" />
6982           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDefaultCellStyleChanged" /> event.</para>
6983         </summary>
6984         <param name="e">
6985           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
6986       </Docs>
6987     </Member>
6988     <Member MemberName="OnColumnDisplayIndexChanged">
6989       <MemberSignature Language="C#" Value="protected virtual void OnColumnDisplayIndexChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
6990       <MemberType>Method</MemberType>
6991       <AssemblyInfo>
6992         <AssemblyVersion>2.0.0.0</AssemblyVersion>
6993       </AssemblyInfo>
6994       <ReturnValue>
6995         <ReturnType>System.Void</ReturnType>
6996       </ReturnValue>
6997       <Parameters>
6998         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
6999       </Parameters>
7000       <Docs>
7001         <remarks>
7002           <attribution license="cc4" from="Microsoft" modified="false" />
7003           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7004           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnDisplayIndexChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7005         </remarks>
7006         <summary>
7007           <attribution license="cc4" from="Microsoft" modified="false" />
7008           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDisplayIndexChanged" /> event.</para>
7009         </summary>
7010         <param name="e">
7011           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7012       </Docs>
7013     </Member>
7014     <Member MemberName="OnColumnDividerDoubleClick">
7015       <MemberSignature Language="C#" Value="protected virtual void OnColumnDividerDoubleClick (System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs e);" />
7016       <MemberType>Method</MemberType>
7017       <ReturnValue>
7018         <ReturnType>System.Void</ReturnType>
7019       </ReturnValue>
7020       <Parameters>
7021         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs" />
7022       </Parameters>
7023       <Docs>
7024         <since version=".NET 2.0" />
7025         <remarks>
7026           <attribution license="cc4" from="Microsoft" modified="false" />
7027           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7028           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnDividerDoubleClick(System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7029         </remarks>
7030         <summary>
7031           <attribution license="cc4" from="Microsoft" modified="false" />
7032           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDividerDoubleClick" /> event. </para>
7033         </summary>
7034         <param name="e">
7035           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventArgs" /> that contains the event data. </param>
7036       </Docs>
7037       <AssemblyInfo>
7038         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7039       </AssemblyInfo>
7040     </Member>
7041     <Member MemberName="OnColumnDividerWidthChanged">
7042       <MemberSignature Language="C#" Value="protected virtual void OnColumnDividerWidthChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7043       <MemberType>Method</MemberType>
7044       <AssemblyInfo>
7045         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7046       </AssemblyInfo>
7047       <ReturnValue>
7048         <ReturnType>System.Void</ReturnType>
7049       </ReturnValue>
7050       <Parameters>
7051         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7052       </Parameters>
7053       <Docs>
7054         <remarks>
7055           <attribution license="cc4" from="Microsoft" modified="false" />
7056           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7057           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnDividerWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7058         </remarks>
7059         <summary>
7060           <attribution license="cc4" from="Microsoft" modified="false" />
7061           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnDividerWidthChanged" /> event. </para>
7062         </summary>
7063         <param name="e">
7064           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7065       </Docs>
7066     </Member>
7067     <Member MemberName="OnColumnHeaderCellChanged">
7068       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeaderCellChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7069       <MemberType>Method</MemberType>
7070       <AssemblyInfo>
7071         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7072       </AssemblyInfo>
7073       <ReturnValue>
7074         <ReturnType>System.Void</ReturnType>
7075       </ReturnValue>
7076       <Parameters>
7077         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7078       </Parameters>
7079       <Docs>
7080         <remarks>
7081           <attribution license="cc4" from="Microsoft" modified="false" />
7082           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7083           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeaderCellChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7084         </remarks>
7085         <summary>
7086           <attribution license="cc4" from="Microsoft" modified="false" />
7087           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderCellChanged" /> event.</para>
7088         </summary>
7089         <param name="e">
7090           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7091       </Docs>
7092     </Member>
7093     <Member MemberName="OnColumnHeaderMouseClick">
7094       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeaderMouseClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
7095       <MemberType>Method</MemberType>
7096       <ReturnValue>
7097         <ReturnType>System.Void</ReturnType>
7098       </ReturnValue>
7099       <Parameters>
7100         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
7101       </Parameters>
7102       <Docs>
7103         <since version=".NET 2.0" />
7104         <remarks>
7105           <attribution license="cc4" from="Microsoft" modified="false" />
7106           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7107           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeaderMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7108         </remarks>
7109         <summary>
7110           <attribution license="cc4" from="Microsoft" modified="false" />
7111           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseClick" /> event.</para>
7112         </summary>
7113         <param name="e">
7114           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains the event data. </param>
7115       </Docs>
7116       <AssemblyInfo>
7117         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7118       </AssemblyInfo>
7119     </Member>
7120     <Member MemberName="OnColumnHeaderMouseDoubleClick">
7121       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeaderMouseDoubleClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
7122       <MemberType>Method</MemberType>
7123       <ReturnValue>
7124         <ReturnType>System.Void</ReturnType>
7125       </ReturnValue>
7126       <Parameters>
7127         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
7128       </Parameters>
7129       <Docs>
7130         <since version=".NET 2.0" />
7131         <remarks>
7132           <attribution license="cc4" from="Microsoft" modified="false" />
7133           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7134           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeaderMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7135         </remarks>
7136         <summary>
7137           <attribution license="cc4" from="Microsoft" modified="false" />
7138           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseDoubleClick" /> event.</para>
7139         </summary>
7140         <param name="e">
7141           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the cell and the position of the mouse pointer.</param>
7142       </Docs>
7143       <AssemblyInfo>
7144         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7145       </AssemblyInfo>
7146     </Member>
7147     <Member MemberName="OnColumnHeadersBorderStyleChanged">
7148       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeadersBorderStyleChanged (EventArgs e);" />
7149       <MemberType>Method</MemberType>
7150       <ReturnValue>
7151         <ReturnType>System.Void</ReturnType>
7152       </ReturnValue>
7153       <Parameters>
7154         <Parameter Name="e" Type="System.EventArgs" />
7155       </Parameters>
7156       <Docs>
7157         <since version=".NET 2.0" />
7158         <remarks>
7159           <attribution license="cc4" from="Microsoft" modified="false" />
7160           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7161           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeadersBorderStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7162         </remarks>
7163         <summary>
7164           <attribution license="cc4" from="Microsoft" modified="false" />
7165           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersBorderStyleChanged" /> event. </para>
7166         </summary>
7167         <param name="e">
7168           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7169       </Docs>
7170       <AssemblyInfo>
7171         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7172       </AssemblyInfo>
7173     </Member>
7174     <Member MemberName="OnColumnHeadersDefaultCellStyleChanged">
7175       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeadersDefaultCellStyleChanged (EventArgs e);" />
7176       <MemberType>Method</MemberType>
7177       <ReturnValue>
7178         <ReturnType>System.Void</ReturnType>
7179       </ReturnValue>
7180       <Parameters>
7181         <Parameter Name="e" Type="System.EventArgs" />
7182       </Parameters>
7183       <Docs>
7184         <since version=".NET 2.0" />
7185         <remarks>
7186           <attribution license="cc4" from="Microsoft" modified="false" />
7187           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7188           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeadersDefaultCellStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7189         </remarks>
7190         <summary>
7191           <attribution license="cc4" from="Microsoft" modified="false" />
7192           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyleChanged" /> event.</para>
7193         </summary>
7194         <param name="e">
7195           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7196       </Docs>
7197       <AssemblyInfo>
7198         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7199       </AssemblyInfo>
7200     </Member>
7201     <Member MemberName="OnColumnHeadersHeightChanged">
7202       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeadersHeightChanged (EventArgs e);" />
7203       <MemberType>Method</MemberType>
7204       <ReturnValue>
7205         <ReturnType>System.Void</ReturnType>
7206       </ReturnValue>
7207       <Parameters>
7208         <Parameter Name="e" Type="System.EventArgs" />
7209       </Parameters>
7210       <Docs>
7211         <since version=".NET 2.0" />
7212         <remarks>
7213           <attribution license="cc4" from="Microsoft" modified="false" />
7214           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7215           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeadersHeightChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7216         </remarks>
7217         <summary>
7218           <attribution license="cc4" from="Microsoft" modified="false" />
7219           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersHeightChanged" /> event.</para>
7220         </summary>
7221         <param name="e">
7222           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7223       </Docs>
7224       <AssemblyInfo>
7225         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7226       </AssemblyInfo>
7227     </Member>
7228     <Member MemberName="OnColumnHeadersHeightSizeModeChanged">
7229       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeadersHeightSizeModeChanged (System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e);" />
7230       <MemberType>Method</MemberType>
7231       <ReturnValue>
7232         <ReturnType>System.Void</ReturnType>
7233       </ReturnValue>
7234       <Parameters>
7235         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" />
7236       </Parameters>
7237       <Docs>
7238         <since version=".NET 2.0" />
7239         <remarks>
7240           <attribution license="cc4" from="Microsoft" modified="false" />
7241           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7242           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnHeadersHeightSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7243         </remarks>
7244         <summary>
7245           <attribution license="cc4" from="Microsoft" modified="false" />
7246           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeModeChanged" /> event. </para>
7247         </summary>
7248         <param name="e">
7249           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data. </param>
7250       </Docs>
7251       <AssemblyInfo>
7252         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7253       </AssemblyInfo>
7254     </Member>
7255     <Member MemberName="OnColumnMinimumWidthChanged">
7256       <MemberSignature Language="C#" Value="protected virtual void OnColumnMinimumWidthChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7257       <MemberType>Method</MemberType>
7258       <AssemblyInfo>
7259         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7260       </AssemblyInfo>
7261       <ReturnValue>
7262         <ReturnType>System.Void</ReturnType>
7263       </ReturnValue>
7264       <Parameters>
7265         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7266       </Parameters>
7267       <Docs>
7268         <remarks>
7269           <attribution license="cc4" from="Microsoft" modified="false" />
7270           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7271           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnMinimumWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7272         </remarks>
7273         <summary>
7274           <attribution license="cc4" from="Microsoft" modified="false" />
7275           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnMinimumWidthChanged" /> event.</para>
7276         </summary>
7277         <param name="e">
7278           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7279       </Docs>
7280     </Member>
7281     <Member MemberName="OnColumnNameChanged">
7282       <MemberSignature Language="C#" Value="protected virtual void OnColumnNameChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7283       <MemberType>Method</MemberType>
7284       <AssemblyInfo>
7285         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7286       </AssemblyInfo>
7287       <ReturnValue>
7288         <ReturnType>System.Void</ReturnType>
7289       </ReturnValue>
7290       <Parameters>
7291         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7292       </Parameters>
7293       <Docs>
7294         <remarks>
7295           <attribution license="cc4" from="Microsoft" modified="false" />
7296           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7297           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnNameChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7298         </remarks>
7299         <summary>
7300           <attribution license="cc4" from="Microsoft" modified="false" />
7301           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnNameChanged" /> event.</para>
7302         </summary>
7303         <param name="e">
7304           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7305       </Docs>
7306     </Member>
7307     <Member MemberName="OnColumnRemoved">
7308       <MemberSignature Language="C#" Value="protected virtual void OnColumnRemoved (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7309       <MemberType>Method</MemberType>
7310       <ReturnValue>
7311         <ReturnType>System.Void</ReturnType>
7312       </ReturnValue>
7313       <Parameters>
7314         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7315       </Parameters>
7316       <Docs>
7317         <since version=".NET 2.0" />
7318         <remarks>
7319           <attribution license="cc4" from="Microsoft" modified="false" />
7320           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7321           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnRemoved(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7322         </remarks>
7323         <summary>
7324           <attribution license="cc4" from="Microsoft" modified="false" />
7325           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnRemoved" /> event. </para>
7326         </summary>
7327         <param name="e">
7328           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7329       </Docs>
7330       <AssemblyInfo>
7331         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7332       </AssemblyInfo>
7333     </Member>
7334     <Member MemberName="OnColumnSortModeChanged">
7335       <MemberSignature Language="C#" Value="protected virtual void OnColumnSortModeChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7336       <MemberType>Method</MemberType>
7337       <AssemblyInfo>
7338         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7339       </AssemblyInfo>
7340       <ReturnValue>
7341         <ReturnType>System.Void</ReturnType>
7342       </ReturnValue>
7343       <Parameters>
7344         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7345       </Parameters>
7346       <Docs>
7347         <remarks>
7348           <attribution license="cc4" from="Microsoft" modified="false" />
7349           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7350           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnSortModeChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7351         </remarks>
7352         <summary>
7353           <attribution license="cc4" from="Microsoft" modified="false" />
7354           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnSortModeChanged" /> event.</para>
7355         </summary>
7356         <param name="e">
7357           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7358       </Docs>
7359     </Member>
7360     <Member MemberName="OnColumnStateChanged">
7361       <MemberSignature Language="C#" Value="protected virtual void OnColumnStateChanged (System.Windows.Forms.DataGridViewColumnStateChangedEventArgs e);" />
7362       <MemberType>Method</MemberType>
7363       <AssemblyInfo>
7364         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7365       </AssemblyInfo>
7366       <ReturnValue>
7367         <ReturnType>System.Void</ReturnType>
7368       </ReturnValue>
7369       <Parameters>
7370         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnStateChangedEventArgs" />
7371       </Parameters>
7372       <Docs>
7373         <remarks>
7374           <attribution license="cc4" from="Microsoft" modified="false" />
7375           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7376           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnStateChanged(System.Windows.Forms.DataGridViewColumnStateChangedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7377         </remarks>
7378         <summary>
7379           <attribution license="cc4" from="Microsoft" modified="false" />
7380           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnStateChanged" /> event.</para>
7381         </summary>
7382         <param name="e">
7383           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnStateChangedEventArgs" /> that contains the event data. </param>
7384       </Docs>
7385     </Member>
7386     <Member MemberName="OnColumnToolTipTextChanged">
7387       <MemberSignature Language="C#" Value="protected virtual void OnColumnToolTipTextChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7388       <MemberType>Method</MemberType>
7389       <AssemblyInfo>
7390         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7391       </AssemblyInfo>
7392       <ReturnValue>
7393         <ReturnType>System.Void</ReturnType>
7394       </ReturnValue>
7395       <Parameters>
7396         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7397       </Parameters>
7398       <Docs>
7399         <remarks>
7400           <attribution license="cc4" from="Microsoft" modified="false" />
7401           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7402           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnToolTipTextChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7403         </remarks>
7404         <summary>
7405           <attribution license="cc4" from="Microsoft" modified="false" />
7406           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnToolTipTextChanged" /> event.</para>
7407         </summary>
7408         <param name="e">
7409           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains information about the column.</param>
7410       </Docs>
7411     </Member>
7412     <Member MemberName="OnColumnWidthChanged">
7413       <MemberSignature Language="C#" Value="protected virtual void OnColumnWidthChanged (System.Windows.Forms.DataGridViewColumnEventArgs e);" />
7414       <MemberType>Method</MemberType>
7415       <AssemblyInfo>
7416         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7417       </AssemblyInfo>
7418       <ReturnValue>
7419         <ReturnType>System.Void</ReturnType>
7420       </ReturnValue>
7421       <Parameters>
7422         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewColumnEventArgs" />
7423       </Parameters>
7424       <Docs>
7425         <remarks>
7426           <attribution license="cc4" from="Microsoft" modified="false" />
7427           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7428           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnColumnWidthChanged(System.Windows.Forms.DataGridViewColumnEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7429         </remarks>
7430         <summary>
7431           <attribution license="cc4" from="Microsoft" modified="false" />
7432           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ColumnWidthChanged" /> event.</para>
7433         </summary>
7434         <param name="e">
7435           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewColumnEventArgs" /> that contains the event data. </param>
7436       </Docs>
7437     </Member>
7438     <Member MemberName="OnCurrentCellChanged">
7439       <MemberSignature Language="C#" Value="protected virtual void OnCurrentCellChanged (EventArgs e);" />
7440       <MemberType>Method</MemberType>
7441       <ReturnValue>
7442         <ReturnType>System.Void</ReturnType>
7443       </ReturnValue>
7444       <Parameters>
7445         <Parameter Name="e" Type="System.EventArgs" />
7446       </Parameters>
7447       <Docs>
7448         <since version=".NET 2.0" />
7449         <remarks>
7450           <attribution license="cc4" from="Microsoft" modified="false" />
7451           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7452           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCurrentCellChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7453         </remarks>
7454         <summary>
7455           <attribution license="cc4" from="Microsoft" modified="false" />
7456           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellChanged" /> event. </para>
7457         </summary>
7458         <param name="e">
7459           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
7460       </Docs>
7461       <AssemblyInfo>
7462         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7463       </AssemblyInfo>
7464     </Member>
7465     <Member MemberName="OnCurrentCellDirtyStateChanged">
7466       <MemberSignature Language="C#" Value="protected virtual void OnCurrentCellDirtyStateChanged (EventArgs e);" />
7467       <MemberType>Method</MemberType>
7468       <ReturnValue>
7469         <ReturnType>System.Void</ReturnType>
7470       </ReturnValue>
7471       <Parameters>
7472         <Parameter Name="e" Type="System.EventArgs" />
7473       </Parameters>
7474       <Docs>
7475         <since version=".NET 2.0" />
7476         <remarks>
7477           <attribution license="cc4" from="Microsoft" modified="false" />
7478           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7479           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCurrentCellDirtyStateChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7480         </remarks>
7481         <summary>
7482           <attribution license="cc4" from="Microsoft" modified="false" />
7483           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellDirtyStateChanged" /> event.</para>
7484         </summary>
7485         <param name="e">
7486           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7487       </Docs>
7488       <AssemblyInfo>
7489         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7490       </AssemblyInfo>
7491     </Member>
7492     <Member MemberName="OnCursorChanged">
7493       <MemberSignature Language="C#" Value="protected override void OnCursorChanged (EventArgs e);" />
7494       <MemberType>Method</MemberType>
7495       <AssemblyInfo>
7496         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7497       </AssemblyInfo>
7498       <ReturnValue>
7499         <ReturnType>System.Void</ReturnType>
7500       </ReturnValue>
7501       <Parameters>
7502         <Parameter Name="e" Type="System.EventArgs" />
7503       </Parameters>
7504       <Docs>
7505         <remarks>
7506           <attribution license="cc4" from="Microsoft" modified="false" />
7507           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control changes the <see cref="P:System.Windows.Forms.Control.Cursor" /> property value depending on the location of the mouse pointer. The <see cref="P:System.Windows.Forms.DataGridView.UserSetCursor" /> property stores the normal value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property and ignores the control's changes. This method is called when the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event occurs, and it updates the <see cref="P:System.Windows.Forms.DataGridView.UserSetCursor" /> property, if necessary, in addition to invoking any event handlers. </para>
7508           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7509           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnCursorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7510         </remarks>
7511         <summary>
7512           <attribution license="cc4" from="Microsoft" modified="false" />
7513           <para>Raises the <see cref="E:System.Windows.Forms.Control.CursorChanged" /> event and updates the <see cref="P:System.Windows.Forms.DataGridView.UserSetCursor" /> property if the cursor was changed in user code.</para>
7514         </summary>
7515         <param name="e">
7516           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7517       </Docs>
7518     </Member>
7519     <Member MemberName="OnDataBindingComplete">
7520       <MemberSignature Language="C#" Value="protected virtual void OnDataBindingComplete (System.Windows.Forms.DataGridViewBindingCompleteEventArgs e);" />
7521       <MemberType>Method</MemberType>
7522       <ReturnValue>
7523         <ReturnType>System.Void</ReturnType>
7524       </ReturnValue>
7525       <Parameters>
7526         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewBindingCompleteEventArgs" />
7527       </Parameters>
7528       <Docs>
7529         <since version=".NET 2.0" />
7530         <remarks>
7531           <attribution license="cc4" from="Microsoft" modified="false" />
7532           <para>Binding operations occur when the data changes while a <see cref="T:System.Windows.Forms.CurrencyManager" /> is in use. For example, if a <see cref="E:System.Windows.Forms.CurrencyManager.ListChanged" /> event occurs, the <see cref="T:System.Windows.Forms.DataGridView" /> will update its view and raise the <see cref="E:System.Windows.Forms.DataGridView.DataBindingComplete" /> event when it is finished.</para>
7533         </remarks>
7534         <summary>
7535           <attribution license="cc4" from="Microsoft" modified="false" />
7536           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataBindingComplete" /> event.</para>
7537         </summary>
7538         <param name="e">
7539           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewBindingCompleteEventArgs" /> that contains the event data.</param>
7540       </Docs>
7541       <AssemblyInfo>
7542         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7543       </AssemblyInfo>
7544     </Member>
7545     <Member MemberName="OnDataError">
7546       <MemberSignature Language="C#" Value="protected virtual void OnDataError (bool displayErrorDialogIfNoHandler, System.Windows.Forms.DataGridViewDataErrorEventArgs e);" />
7547       <MemberType>Method</MemberType>
7548       <ReturnValue>
7549         <ReturnType>System.Void</ReturnType>
7550       </ReturnValue>
7551       <Parameters>
7552         <Parameter Name="displayErrorDialogIfNoHandler" Type="System.Boolean" />
7553         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewDataErrorEventArgs" />
7554       </Parameters>
7555       <Docs>
7556         <since version=".NET 2.0" />
7557         <remarks>
7558           <attribution license="cc4" from="Microsoft" modified="false" />
7559           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7560           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnDataError(System.Boolean,System.Windows.Forms.DataGridViewDataErrorEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7561         </remarks>
7562         <summary>
7563           <attribution license="cc4" from="Microsoft" modified="false" />
7564           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event. </para>
7565         </summary>
7566         <param name="displayErrorDialogIfNoHandler">
7567           <attribution license="cc4" from="Microsoft" modified="false" />true to display an error dialog box if there is no handler for the <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event.</param>
7568         <param name="e">
7569           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewDataErrorEventArgs" /> that contains the event data. </param>
7570       </Docs>
7571       <AssemblyInfo>
7572         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7573       </AssemblyInfo>
7574     </Member>
7575     <Member MemberName="OnDataMemberChanged">
7576       <MemberSignature Language="C#" Value="protected virtual void OnDataMemberChanged (EventArgs e);" />
7577       <MemberType>Method</MemberType>
7578       <ReturnValue>
7579         <ReturnType>System.Void</ReturnType>
7580       </ReturnValue>
7581       <Parameters>
7582         <Parameter Name="e" Type="System.EventArgs" />
7583       </Parameters>
7584       <Docs>
7585         <since version=".NET 2.0" />
7586         <remarks>
7587           <attribution license="cc4" from="Microsoft" modified="false" />
7588           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7589           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnDataMemberChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7590         </remarks>
7591         <summary>
7592           <attribution license="cc4" from="Microsoft" modified="false" />
7593           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataMemberChanged" /> event.</para>
7594         </summary>
7595         <param name="e">
7596           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7597       </Docs>
7598       <AssemblyInfo>
7599         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7600       </AssemblyInfo>
7601     </Member>
7602     <Member MemberName="OnDataSourceChanged">
7603       <MemberSignature Language="C#" Value="protected virtual void OnDataSourceChanged (EventArgs e);" />
7604       <MemberType>Method</MemberType>
7605       <ReturnValue>
7606         <ReturnType>System.Void</ReturnType>
7607       </ReturnValue>
7608       <Parameters>
7609         <Parameter Name="e" Type="System.EventArgs" />
7610       </Parameters>
7611       <Docs>
7612         <since version=".NET 2.0" />
7613         <remarks>
7614           <attribution license="cc4" from="Microsoft" modified="false" />
7615           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7616           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnDataSourceChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7617         </remarks>
7618         <summary>
7619           <attribution license="cc4" from="Microsoft" modified="false" />
7620           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.DataSourceChanged" /> event.</para>
7621         </summary>
7622         <param name="e">
7623           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7624       </Docs>
7625       <AssemblyInfo>
7626         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7627       </AssemblyInfo>
7628     </Member>
7629     <Member MemberName="OnDefaultCellStyleChanged">
7630       <MemberSignature Language="C#" Value="protected virtual void OnDefaultCellStyleChanged (EventArgs e);" />
7631       <MemberType>Method</MemberType>
7632       <ReturnValue>
7633         <ReturnType>System.Void</ReturnType>
7634       </ReturnValue>
7635       <Parameters>
7636         <Parameter Name="e" Type="System.EventArgs" />
7637       </Parameters>
7638       <Docs>
7639         <since version=".NET 2.0" />
7640         <remarks>
7641           <attribution license="cc4" from="Microsoft" modified="false" />
7642           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7643           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnDefaultCellStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7644         </remarks>
7645         <summary>
7646           <attribution license="cc4" from="Microsoft" modified="false" />
7647           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.DefaultCellStyleChanged" /> event.</para>
7648         </summary>
7649         <param name="e">
7650           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7651       </Docs>
7652       <AssemblyInfo>
7653         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7654       </AssemblyInfo>
7655     </Member>
7656     <Member MemberName="OnDefaultValuesNeeded">
7657       <MemberSignature Language="C#" Value="protected virtual void OnDefaultValuesNeeded (System.Windows.Forms.DataGridViewRowEventArgs e);" />
7658       <MemberType>Method</MemberType>
7659       <ReturnValue>
7660         <ReturnType>System.Void</ReturnType>
7661       </ReturnValue>
7662       <Parameters>
7663         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
7664       </Parameters>
7665       <Docs>
7666         <since version=".NET 2.0" />
7667         <remarks>
7668           <attribution license="cc4" from="Microsoft" modified="false" />
7669           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7670           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnDefaultValuesNeeded(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7671         </remarks>
7672         <summary>
7673           <attribution license="cc4" from="Microsoft" modified="false" />
7674           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.DefaultValuesNeeded" /> event.</para>
7675         </summary>
7676         <param name="e">
7677           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
7678       </Docs>
7679       <AssemblyInfo>
7680         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7681       </AssemblyInfo>
7682     </Member>
7683     <Member MemberName="OnDoubleClick">
7684       <MemberSignature Language="C#" Value="protected override void OnDoubleClick (EventArgs e);" />
7685       <MemberType>Method</MemberType>
7686       <ReturnValue>
7687         <ReturnType>System.Void</ReturnType>
7688       </ReturnValue>
7689       <Parameters>
7690         <Parameter Name="e" Type="System.EventArgs" />
7691       </Parameters>
7692       <Docs>
7693         <since version=".NET 2.0" />
7694         <remarks>
7695           <attribution license="cc4" from="Microsoft" modified="false" />
7696           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7697           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnDoubleClick(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7698         </remarks>
7699         <summary>
7700           <attribution license="cc4" from="Microsoft" modified="false" />
7701           <para>Raises the <see cref="E:System.Windows.Forms.Control.DoubleClick" /> event. </para>
7702         </summary>
7703         <param name="e">
7704           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7705       </Docs>
7706       <AssemblyInfo>
7707         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7708       </AssemblyInfo>
7709     </Member>
7710     <Member MemberName="OnEditingControlShowing">
7711       <MemberSignature Language="C#" Value="protected virtual void OnEditingControlShowing (System.Windows.Forms.DataGridViewEditingControlShowingEventArgs e);" />
7712       <MemberType>Method</MemberType>
7713       <ReturnValue>
7714         <ReturnType>System.Void</ReturnType>
7715       </ReturnValue>
7716       <Parameters>
7717         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewEditingControlShowingEventArgs" />
7718       </Parameters>
7719       <Docs>
7720         <since version=".NET 2.0" />
7721         <remarks>
7722           <attribution license="cc4" from="Microsoft" modified="false" />
7723           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7724           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnEditingControlShowing(System.Windows.Forms.DataGridViewEditingControlShowingEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7725         </remarks>
7726         <summary>
7727           <attribution license="cc4" from="Microsoft" modified="false" />
7728           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.EditingControlShowing" /> event.</para>
7729         </summary>
7730         <param name="e">
7731           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewEditingControlShowingEventArgs" /> that contains information about the editing control.</param>
7732       </Docs>
7733       <AssemblyInfo>
7734         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7735       </AssemblyInfo>
7736     </Member>
7737     <Member MemberName="OnEditModeChanged">
7738       <MemberSignature Language="C#" Value="protected virtual void OnEditModeChanged (EventArgs e);" />
7739       <MemberType>Method</MemberType>
7740       <ReturnValue>
7741         <ReturnType>System.Void</ReturnType>
7742       </ReturnValue>
7743       <Parameters>
7744         <Parameter Name="e" Type="System.EventArgs" />
7745       </Parameters>
7746       <Docs>
7747         <since version=".NET 2.0" />
7748         <remarks>
7749           <attribution license="cc4" from="Microsoft" modified="false" />
7750           <para>The <see cref="E:System.Windows.Forms.DataGridView.EditModeChanged" /> event is raised whenever the <see cref="P:System.Windows.Forms.DataGridView.EditMode" /> property changes.</para>
7751           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
7752           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnEditModeChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7753         </remarks>
7754         <summary>
7755           <attribution license="cc4" from="Microsoft" modified="false" />
7756           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.EditModeChanged" /> event. </para>
7757         </summary>
7758         <param name="e">
7759           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7760       </Docs>
7761       <AssemblyInfo>
7762         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7763       </AssemblyInfo>
7764     </Member>
7765     <Member MemberName="OnEnabledChanged">
7766       <MemberSignature Language="C#" Value="protected override void OnEnabledChanged (EventArgs e);" />
7767       <MemberType>Method</MemberType>
7768       <ReturnValue>
7769         <ReturnType>System.Void</ReturnType>
7770       </ReturnValue>
7771       <Parameters>
7772         <Parameter Name="e" Type="System.EventArgs" />
7773       </Parameters>
7774       <Docs>
7775         <param name="e">To be added.</param>
7776         <summary>To be added.</summary>
7777         <remarks>To be added.</remarks>
7778         <since version=".NET 2.0" />
7779       </Docs>
7780       <AssemblyInfo>
7781         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7782       </AssemblyInfo>
7783     </Member>
7784     <Member MemberName="OnEnter">
7785       <MemberSignature Language="C#" Value="protected override void OnEnter (EventArgs e);" />
7786       <MemberType>Method</MemberType>
7787       <ReturnValue>
7788         <ReturnType>System.Void</ReturnType>
7789       </ReturnValue>
7790       <Parameters>
7791         <Parameter Name="e" Type="System.EventArgs" />
7792       </Parameters>
7793       <Docs>
7794         <since version=".NET 2.0" />
7795         <remarks>
7796           <attribution license="cc4" from="Microsoft" modified="false" />
7797           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7798           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnEnter(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7799         </remarks>
7800         <summary>
7801           <attribution license="cc4" from="Microsoft" modified="false" />
7802           <para>Raises the <see cref="E:System.Windows.Forms.Control.Enter" /> event.</para>
7803         </summary>
7804         <param name="e">
7805           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7806       </Docs>
7807       <AssemblyInfo>
7808         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7809       </AssemblyInfo>
7810     </Member>
7811     <Member MemberName="OnFontChanged">
7812       <MemberSignature Language="C#" Value="protected override void OnFontChanged (EventArgs e);" />
7813       <MemberType>Method</MemberType>
7814       <ReturnValue>
7815         <ReturnType>System.Void</ReturnType>
7816       </ReturnValue>
7817       <Parameters>
7818         <Parameter Name="e" Type="System.EventArgs" />
7819       </Parameters>
7820       <Docs>
7821         <since version=".NET 2.0" />
7822         <remarks>
7823           <attribution license="cc4" from="Microsoft" modified="false" />
7824           <para>In addition to raising the <see cref="E:System.Windows.Forms.DataGridView.FontChanged" /> event, this method uses the new value of the <see cref="P:System.Windows.Forms.DataGridView.Font" /> property to update the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Font" /> properties of <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> objects returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersDefaultCellStyle" />, and <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> properties.</para>
7825           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7826           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnFontChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7827         </remarks>
7828         <summary>
7829           <attribution license="cc4" from="Microsoft" modified="false" />
7830           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.FontChanged" /> event.</para>
7831         </summary>
7832         <param name="e">
7833           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7834       </Docs>
7835       <AssemblyInfo>
7836         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7837       </AssemblyInfo>
7838     </Member>
7839     <Member MemberName="OnForeColorChanged">
7840       <MemberSignature Language="C#" Value="protected override void OnForeColorChanged (EventArgs e);" />
7841       <MemberType>Method</MemberType>
7842       <ReturnValue>
7843         <ReturnType>System.Void</ReturnType>
7844       </ReturnValue>
7845       <Parameters>
7846         <Parameter Name="e" Type="System.EventArgs" />
7847       </Parameters>
7848       <Docs>
7849         <since version=".NET 2.0" />
7850         <remarks>
7851           <attribution license="cc4" from="Microsoft" modified="false" />
7852           <para>In addition to raising the <see cref="E:System.Windows.Forms.DataGridView.FontChanged" /> event, this method uses the new value of the <see cref="P:System.Windows.Forms.DataGridView.ForeColor" /> property to update the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.ForeColor" /> property of <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property.</para>
7853           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7854           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnForeColorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7855         </remarks>
7856         <summary>
7857           <attribution license="cc4" from="Microsoft" modified="false" />
7858           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ForeColorChanged" /> event.</para>
7859         </summary>
7860         <param name="e">
7861           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7862       </Docs>
7863       <AssemblyInfo>
7864         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7865       </AssemblyInfo>
7866     </Member>
7867     <Member MemberName="OnGotFocus">
7868       <MemberSignature Language="C#" Value="protected override void OnGotFocus (EventArgs e);" />
7869       <MemberType>Method</MemberType>
7870       <AssemblyInfo>
7871         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7872       </AssemblyInfo>
7873       <ReturnValue>
7874         <ReturnType>System.Void</ReturnType>
7875       </ReturnValue>
7876       <Parameters>
7877         <Parameter Name="e" Type="System.EventArgs" />
7878       </Parameters>
7879       <Docs>
7880         <param name="e">To be added.</param>
7881         <summary>To be added.</summary>
7882         <remarks>To be added.</remarks>
7883       </Docs>
7884     </Member>
7885     <Member MemberName="OnGridColorChanged">
7886       <MemberSignature Language="C#" Value="protected virtual void OnGridColorChanged (EventArgs e);" />
7887       <MemberType>Method</MemberType>
7888       <ReturnValue>
7889         <ReturnType>System.Void</ReturnType>
7890       </ReturnValue>
7891       <Parameters>
7892         <Parameter Name="e" Type="System.EventArgs" />
7893       </Parameters>
7894       <Docs>
7895         <since version=".NET 2.0" />
7896         <remarks>
7897           <attribution license="cc4" from="Microsoft" modified="false" />
7898           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7899           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnGridColorChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7900         </remarks>
7901         <summary>
7902           <attribution license="cc4" from="Microsoft" modified="false" />
7903           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.GridColorChanged" /> event.</para>
7904         </summary>
7905         <param name="e">
7906           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7907       </Docs>
7908       <AssemblyInfo>
7909         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7910       </AssemblyInfo>
7911     </Member>
7912     <Member MemberName="OnHandleCreated">
7913       <MemberSignature Language="C#" Value="protected override void OnHandleCreated (EventArgs e);" />
7914       <MemberType>Method</MemberType>
7915       <ReturnValue>
7916         <ReturnType>System.Void</ReturnType>
7917       </ReturnValue>
7918       <Parameters>
7919         <Parameter Name="e" Type="System.EventArgs" />
7920       </Parameters>
7921       <Docs>
7922         <since version=".NET 2.0" />
7923         <remarks>
7924           <attribution license="cc4" from="Microsoft" modified="false" />
7925           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7926           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnHandleCreated(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7927         </remarks>
7928         <summary>
7929           <attribution license="cc4" from="Microsoft" modified="false" />
7930           <para>Raises the <see cref="E:System.Windows.Forms.Control.HandleCreated" /> event.</para>
7931         </summary>
7932         <param name="e">
7933           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
7934       </Docs>
7935       <AssemblyInfo>
7936         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7937       </AssemblyInfo>
7938     </Member>
7939     <Member MemberName="OnHandleDestroyed">
7940       <MemberSignature Language="C#" Value="protected override void OnHandleDestroyed (EventArgs e);" />
7941       <MemberType>Method</MemberType>
7942       <AssemblyInfo>
7943         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7944       </AssemblyInfo>
7945       <ReturnValue>
7946         <ReturnType>System.Void</ReturnType>
7947       </ReturnValue>
7948       <Parameters>
7949         <Parameter Name="e" Type="System.EventArgs" />
7950       </Parameters>
7951       <Docs>
7952         <param name="e">To be added.</param>
7953         <summary>To be added.</summary>
7954         <remarks>To be added.</remarks>
7955       </Docs>
7956     </Member>
7957     <Member MemberName="OnKeyDown">
7958       <MemberSignature Language="C#" Value="protected override void OnKeyDown (System.Windows.Forms.KeyEventArgs e);" />
7959       <MemberType>Method</MemberType>
7960       <ReturnValue>
7961         <ReturnType>System.Void</ReturnType>
7962       </ReturnValue>
7963       <Parameters>
7964         <Parameter Name="e" Type="System.Windows.Forms.KeyEventArgs" />
7965       </Parameters>
7966       <Docs>
7967         <since version=".NET 2.0" />
7968         <remarks>
7969           <attribution license="cc4" from="Microsoft" modified="false" />
7970           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
7971           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnKeyDown(System.Windows.Forms.KeyEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
7972         </remarks>
7973         <summary>
7974           <attribution license="cc4" from="Microsoft" modified="false" />
7975           <para>Raises the <see cref="E:System.Windows.Forms.Control.KeyDown" /> event.</para>
7976         </summary>
7977         <param name="e">
7978           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data. </param>
7979       </Docs>
7980       <AssemblyInfo>
7981         <AssemblyVersion>2.0.0.0</AssemblyVersion>
7982       </AssemblyInfo>
7983       <Attributes>
7984         <Attribute>
7985           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
7986         </Attribute>
7987       </Attributes>
7988     </Member>
7989     <Member MemberName="OnKeyPress">
7990       <MemberSignature Language="C#" Value="protected override void OnKeyPress (System.Windows.Forms.KeyPressEventArgs e);" />
7991       <MemberType>Method</MemberType>
7992       <ReturnValue>
7993         <ReturnType>System.Void</ReturnType>
7994       </ReturnValue>
7995       <Parameters>
7996         <Parameter Name="e" Type="System.Windows.Forms.KeyPressEventArgs" />
7997       </Parameters>
7998       <Docs>
7999         <since version=".NET 2.0" />
8000         <remarks>
8001           <attribution license="cc4" from="Microsoft" modified="false" />
8002           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8003           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnKeyPress(System.Windows.Forms.KeyPressEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8004         </remarks>
8005         <summary>
8006           <attribution license="cc4" from="Microsoft" modified="false" />
8007           <para>Raises the <see cref="E:System.Windows.Forms.Control.KeyPress" /> event.</para>
8008         </summary>
8009         <param name="e">
8010           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyPressEventArgs" /> that contains the event data. </param>
8011       </Docs>
8012       <AssemblyInfo>
8013         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8014       </AssemblyInfo>
8015       <Attributes>
8016         <Attribute>
8017           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
8018         </Attribute>
8019       </Attributes>
8020     </Member>
8021     <Member MemberName="OnKeyUp">
8022       <MemberSignature Language="C#" Value="protected override void OnKeyUp (System.Windows.Forms.KeyEventArgs e);" />
8023       <MemberType>Method</MemberType>
8024       <ReturnValue>
8025         <ReturnType>System.Void</ReturnType>
8026       </ReturnValue>
8027       <Parameters>
8028         <Parameter Name="e" Type="System.Windows.Forms.KeyEventArgs" />
8029       </Parameters>
8030       <Docs>
8031         <since version=".NET 2.0" />
8032         <remarks>
8033           <attribution license="cc4" from="Microsoft" modified="false" />
8034           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8035           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnKeyUp(System.Windows.Forms.KeyEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8036         </remarks>
8037         <summary>
8038           <attribution license="cc4" from="Microsoft" modified="false" />
8039           <para>Raises the <see cref="E:System.Windows.Forms.Control.KeyUp" /> event.</para>
8040         </summary>
8041         <param name="e">
8042           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.KeyEventArgs" /> that contains the event data. </param>
8043       </Docs>
8044       <AssemblyInfo>
8045         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8046       </AssemblyInfo>
8047       <Attributes>
8048         <Attribute>
8049           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
8050         </Attribute>
8051       </Attributes>
8052     </Member>
8053     <Member MemberName="OnLayout">
8054       <MemberSignature Language="C#" Value="protected override void OnLayout (System.Windows.Forms.LayoutEventArgs e);" />
8055       <MemberType>Method</MemberType>
8056       <ReturnValue>
8057         <ReturnType>System.Void</ReturnType>
8058       </ReturnValue>
8059       <Parameters>
8060         <Parameter Name="e" Type="System.Windows.Forms.LayoutEventArgs" />
8061       </Parameters>
8062       <Docs>
8063         <since version=".NET 2.0" />
8064         <remarks>
8065           <attribution license="cc4" from="Microsoft" modified="false" />
8066           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8067           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnLayout(System.Windows.Forms.LayoutEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8068         </remarks>
8069         <summary>
8070           <attribution license="cc4" from="Microsoft" modified="false" />
8071           <para>Raises the <see cref="E:System.Windows.Forms.Control.Layout" /> event.</para>
8072         </summary>
8073         <param name="e">
8074           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.LayoutEventArgs" /> that contains the event data. </param>
8075       </Docs>
8076       <AssemblyInfo>
8077         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8078       </AssemblyInfo>
8079     </Member>
8080     <Member MemberName="OnLeave">
8081       <MemberSignature Language="C#" Value="protected override void OnLeave (EventArgs e);" />
8082       <MemberType>Method</MemberType>
8083       <ReturnValue>
8084         <ReturnType>System.Void</ReturnType>
8085       </ReturnValue>
8086       <Parameters>
8087         <Parameter Name="e" Type="System.EventArgs" />
8088       </Parameters>
8089       <Docs>
8090         <since version=".NET 2.0" />
8091         <remarks>
8092           <attribution license="cc4" from="Microsoft" modified="false" />
8093           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8094           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnLeave(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8095         </remarks>
8096         <summary>
8097           <attribution license="cc4" from="Microsoft" modified="false" />
8098           <para>Raises the <see cref="E:System.Windows.Forms.Control.Leave" /> event.</para>
8099         </summary>
8100         <param name="e">
8101           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8102       </Docs>
8103       <AssemblyInfo>
8104         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8105       </AssemblyInfo>
8106     </Member>
8107     <Member MemberName="OnLostFocus">
8108       <MemberSignature Language="C#" Value="protected override void OnLostFocus (EventArgs e);" />
8109       <MemberType>Method</MemberType>
8110       <AssemblyInfo>
8111         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8112       </AssemblyInfo>
8113       <ReturnValue>
8114         <ReturnType>System.Void</ReturnType>
8115       </ReturnValue>
8116       <Parameters>
8117         <Parameter Name="e" Type="System.EventArgs" />
8118       </Parameters>
8119       <Docs>
8120         <param name="e">To be added.</param>
8121         <summary>To be added.</summary>
8122         <remarks>To be added.</remarks>
8123       </Docs>
8124     </Member>
8125     <Member MemberName="OnMouseClick">
8126       <MemberSignature Language="C#" Value="protected override void OnMouseClick (System.Windows.Forms.MouseEventArgs e);" />
8127       <MemberType>Method</MemberType>
8128       <ReturnValue>
8129         <ReturnType>System.Void</ReturnType>
8130       </ReturnValue>
8131       <Parameters>
8132         <Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" />
8133       </Parameters>
8134       <Docs>
8135         <since version=".NET 2.0" />
8136         <remarks>
8137           <attribution license="cc4" from="Microsoft" modified="false" />
8138           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8139           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnMouseClick(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8140         </remarks>
8141         <summary>
8142           <attribution license="cc4" from="Microsoft" modified="false" />
8143           <para>Raises the <see cref="E:System.Windows.Forms.Control.MouseClick" /> event.</para>
8144         </summary>
8145         <param name="e">
8146           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param>
8147       </Docs>
8148       <AssemblyInfo>
8149         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8150       </AssemblyInfo>
8151     </Member>
8152     <Member MemberName="OnMouseDoubleClick">
8153       <MemberSignature Language="C#" Value="protected override void OnMouseDoubleClick (System.Windows.Forms.MouseEventArgs e);" />
8154       <MemberType>Method</MemberType>
8155       <ReturnValue>
8156         <ReturnType>System.Void</ReturnType>
8157       </ReturnValue>
8158       <Parameters>
8159         <Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" />
8160       </Parameters>
8161       <Docs>
8162         <param name="e">To be added.</param>
8163         <summary>To be added.</summary>
8164         <remarks>To be added.</remarks>
8165         <since version=".NET 2.0" />
8166       </Docs>
8167       <AssemblyInfo>
8168         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8169       </AssemblyInfo>
8170     </Member>
8171     <Member MemberName="OnMouseDown">
8172       <MemberSignature Language="C#" Value="protected override void OnMouseDown (System.Windows.Forms.MouseEventArgs e);" />
8173       <MemberType>Method</MemberType>
8174       <ReturnValue>
8175         <ReturnType>System.Void</ReturnType>
8176       </ReturnValue>
8177       <Parameters>
8178         <Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" />
8179       </Parameters>
8180       <Docs>
8181         <since version=".NET 2.0" />
8182         <remarks>
8183           <attribution license="cc4" from="Microsoft" modified="false" />
8184           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8185           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnMouseDown(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8186         </remarks>
8187         <summary>
8188           <attribution license="cc4" from="Microsoft" modified="false" />
8189           <para>Raises the <see cref="E:System.Windows.Forms.Control.MouseDown" /> event.</para>
8190         </summary>
8191         <param name="e">
8192           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param>
8193       </Docs>
8194       <AssemblyInfo>
8195         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8196       </AssemblyInfo>
8197     </Member>
8198     <Member MemberName="OnMouseEnter">
8199       <MemberSignature Language="C#" Value="protected override void OnMouseEnter (EventArgs e);" />
8200       <MemberType>Method</MemberType>
8201       <ReturnValue>
8202         <ReturnType>System.Void</ReturnType>
8203       </ReturnValue>
8204       <Parameters>
8205         <Parameter Name="e" Type="System.EventArgs" />
8206       </Parameters>
8207       <Docs>
8208         <param name="e">To be added.</param>
8209         <summary>To be added.</summary>
8210         <remarks>To be added.</remarks>
8211         <since version=".NET 2.0" />
8212       </Docs>
8213       <AssemblyInfo>
8214         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8215       </AssemblyInfo>
8216     </Member>
8217     <Member MemberName="OnMouseLeave">
8218       <MemberSignature Language="C#" Value="protected override void OnMouseLeave (EventArgs e);" />
8219       <MemberType>Method</MemberType>
8220       <ReturnValue>
8221         <ReturnType>System.Void</ReturnType>
8222       </ReturnValue>
8223       <Parameters>
8224         <Parameter Name="e" Type="System.EventArgs" />
8225       </Parameters>
8226       <Docs>
8227         <since version=".NET 2.0" />
8228         <remarks>
8229           <attribution license="cc4" from="Microsoft" modified="false" />
8230           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8231           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnMouseLeave(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8232         </remarks>
8233         <summary>
8234           <attribution license="cc4" from="Microsoft" modified="false" />
8235           <para>Raises the <see cref="E:System.Windows.Forms.Control.MouseLeave" /> event.</para>
8236         </summary>
8237         <param name="e">
8238           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8239       </Docs>
8240       <AssemblyInfo>
8241         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8242       </AssemblyInfo>
8243     </Member>
8244     <Member MemberName="OnMouseMove">
8245       <MemberSignature Language="C#" Value="protected override void OnMouseMove (System.Windows.Forms.MouseEventArgs e);" />
8246       <MemberType>Method</MemberType>
8247       <ReturnValue>
8248         <ReturnType>System.Void</ReturnType>
8249       </ReturnValue>
8250       <Parameters>
8251         <Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" />
8252       </Parameters>
8253       <Docs>
8254         <since version=".NET 2.0" />
8255         <remarks>
8256           <attribution license="cc4" from="Microsoft" modified="false" />
8257           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8258           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnMouseMove(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8259         </remarks>
8260         <summary>
8261           <attribution license="cc4" from="Microsoft" modified="false" />
8262           <para>Raises the <see cref="E:System.Windows.Forms.Control.MouseMove" /> event.</para>
8263         </summary>
8264         <param name="e">
8265           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param>
8266       </Docs>
8267       <AssemblyInfo>
8268         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8269       </AssemblyInfo>
8270     </Member>
8271     <Member MemberName="OnMouseUp">
8272       <MemberSignature Language="C#" Value="protected override void OnMouseUp (System.Windows.Forms.MouseEventArgs e);" />
8273       <MemberType>Method</MemberType>
8274       <ReturnValue>
8275         <ReturnType>System.Void</ReturnType>
8276       </ReturnValue>
8277       <Parameters>
8278         <Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" />
8279       </Parameters>
8280       <Docs>
8281         <since version=".NET 2.0" />
8282         <remarks>
8283           <attribution license="cc4" from="Microsoft" modified="false" />
8284           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8285           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnMouseUp(System.Windows.Forms.MouseEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8286         </remarks>
8287         <summary>
8288           <attribution license="cc4" from="Microsoft" modified="false" />
8289           <para>Raises the <see cref="E:System.Windows.Forms.Control.MouseUp" /> event.</para>
8290         </summary>
8291         <param name="e">
8292           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.MouseEventArgs" /> that contains the event data. </param>
8293       </Docs>
8294       <AssemblyInfo>
8295         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8296       </AssemblyInfo>
8297     </Member>
8298     <Member MemberName="OnMouseWheel">
8299       <MemberSignature Language="C#" Value="protected override void OnMouseWheel (System.Windows.Forms.MouseEventArgs e);" />
8300       <MemberType>Method</MemberType>
8301       <ReturnValue>
8302         <ReturnType>System.Void</ReturnType>
8303       </ReturnValue>
8304       <Parameters>
8305         <Parameter Name="e" Type="System.Windows.Forms.MouseEventArgs" />
8306       </Parameters>
8307       <Docs>
8308         <param name="e">To be added.</param>
8309         <summary>To be added.</summary>
8310         <remarks>To be added.</remarks>
8311         <since version=".NET 2.0" />
8312       </Docs>
8313       <AssemblyInfo>
8314         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8315       </AssemblyInfo>
8316     </Member>
8317     <Member MemberName="OnMultiSelectChanged">
8318       <MemberSignature Language="C#" Value="protected virtual void OnMultiSelectChanged (EventArgs e);" />
8319       <MemberType>Method</MemberType>
8320       <ReturnValue>
8321         <ReturnType>System.Void</ReturnType>
8322       </ReturnValue>
8323       <Parameters>
8324         <Parameter Name="e" Type="System.EventArgs" />
8325       </Parameters>
8326       <Docs>
8327         <since version=".NET 2.0" />
8328         <remarks>
8329           <attribution license="cc4" from="Microsoft" modified="false" />
8330           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8331           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnMultiSelectChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8332         </remarks>
8333         <summary>
8334           <attribution license="cc4" from="Microsoft" modified="false" />
8335           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.MultiSelectChanged" /> event.</para>
8336         </summary>
8337         <param name="e">
8338           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8339       </Docs>
8340       <AssemblyInfo>
8341         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8342       </AssemblyInfo>
8343     </Member>
8344     <Member MemberName="OnNewRowNeeded">
8345       <MemberSignature Language="C#" Value="protected virtual void OnNewRowNeeded (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8346       <MemberType>Method</MemberType>
8347       <ReturnValue>
8348         <ReturnType>System.Void</ReturnType>
8349       </ReturnValue>
8350       <Parameters>
8351         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8352       </Parameters>
8353       <Docs>
8354         <since version=".NET 2.0" />
8355         <remarks>
8356           <attribution license="cc4" from="Microsoft" modified="false" />
8357           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8358           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnNewRowNeeded(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8359         </remarks>
8360         <summary>
8361           <attribution license="cc4" from="Microsoft" modified="false" />
8362           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.NewRowNeeded" /> event.</para>
8363         </summary>
8364         <param name="e">
8365           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8366       </Docs>
8367       <AssemblyInfo>
8368         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8369       </AssemblyInfo>
8370     </Member>
8371     <Member MemberName="OnPaint">
8372       <MemberSignature Language="C#" Value="protected override void OnPaint (System.Windows.Forms.PaintEventArgs e);" />
8373       <MemberType>Method</MemberType>
8374       <ReturnValue>
8375         <ReturnType>System.Void</ReturnType>
8376       </ReturnValue>
8377       <Parameters>
8378         <Parameter Name="e" Type="System.Windows.Forms.PaintEventArgs" />
8379       </Parameters>
8380       <Docs>
8381         <since version=".NET 2.0" />
8382         <remarks>
8383           <attribution license="cc4" from="Microsoft" modified="false" />
8384           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8385           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnPaint(System.Windows.Forms.PaintEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8386         </remarks>
8387         <summary>
8388           <attribution license="cc4" from="Microsoft" modified="false" />
8389           <para>Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.</para>
8390         </summary>
8391         <param name="e">
8392           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data. </param>
8393       </Docs>
8394       <AssemblyInfo>
8395         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8396       </AssemblyInfo>
8397     </Member>
8398     <Member MemberName="OnReadOnlyChanged">
8399       <MemberSignature Language="C#" Value="protected virtual void OnReadOnlyChanged (EventArgs e);" />
8400       <MemberType>Method</MemberType>
8401       <ReturnValue>
8402         <ReturnType>System.Void</ReturnType>
8403       </ReturnValue>
8404       <Parameters>
8405         <Parameter Name="e" Type="System.EventArgs" />
8406       </Parameters>
8407       <Docs>
8408         <since version=".NET 2.0" />
8409         <remarks>
8410           <attribution license="cc4" from="Microsoft" modified="false" />
8411           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8412           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnReadOnlyChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8413         </remarks>
8414         <summary>
8415           <attribution license="cc4" from="Microsoft" modified="false" />
8416           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.ReadOnlyChanged" /> event.</para>
8417         </summary>
8418         <param name="e">
8419           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8420       </Docs>
8421       <AssemblyInfo>
8422         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8423       </AssemblyInfo>
8424     </Member>
8425     <Member MemberName="OnResize">
8426       <MemberSignature Language="C#" Value="protected override void OnResize (EventArgs e);" />
8427       <MemberType>Method</MemberType>
8428       <ReturnValue>
8429         <ReturnType>System.Void</ReturnType>
8430       </ReturnValue>
8431       <Parameters>
8432         <Parameter Name="e" Type="System.EventArgs" />
8433       </Parameters>
8434       <Docs>
8435         <since version=".NET 2.0" />
8436         <remarks>
8437           <attribution license="cc4" from="Microsoft" modified="false" />
8438           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8439           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnResize(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8440         </remarks>
8441         <summary>
8442           <attribution license="cc4" from="Microsoft" modified="false" />
8443           <para>Raises the <see cref="E:System.Windows.Forms.Control.Resize" /> event.</para>
8444         </summary>
8445         <param name="e">
8446           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8447       </Docs>
8448       <AssemblyInfo>
8449         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8450       </AssemblyInfo>
8451     </Member>
8452     <Member MemberName="OnRightToLeftChanged">
8453       <MemberSignature Language="C#" Value="protected override void OnRightToLeftChanged (EventArgs e);" />
8454       <MemberType>Method</MemberType>
8455       <ReturnValue>
8456         <ReturnType>System.Void</ReturnType>
8457       </ReturnValue>
8458       <Parameters>
8459         <Parameter Name="e" Type="System.EventArgs" />
8460       </Parameters>
8461       <Docs>
8462         <param name="e">To be added.</param>
8463         <summary>To be added.</summary>
8464         <remarks>To be added.</remarks>
8465         <since version=".NET 2.0" />
8466       </Docs>
8467       <AssemblyInfo>
8468         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8469       </AssemblyInfo>
8470     </Member>
8471     <Member MemberName="OnRowContextMenuStripChanged">
8472       <MemberSignature Language="C#" Value="protected virtual void OnRowContextMenuStripChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8473       <MemberType>Method</MemberType>
8474       <AssemblyInfo>
8475         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8476       </AssemblyInfo>
8477       <ReturnValue>
8478         <ReturnType>System.Void</ReturnType>
8479       </ReturnValue>
8480       <Parameters>
8481         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8482       </Parameters>
8483       <Docs>
8484         <remarks>
8485           <attribution license="cc4" from="Microsoft" modified="false" />
8486           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8487           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowContextMenuStripChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8488         </remarks>
8489         <summary>
8490           <attribution license="cc4" from="Microsoft" modified="false" />
8491           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripChanged" /> event. </para>
8492         </summary>
8493         <param name="e">
8494           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8495       </Docs>
8496     </Member>
8497     <Member MemberName="OnRowContextMenuStripNeeded">
8498       <MemberSignature Language="C#" Value="protected virtual void OnRowContextMenuStripNeeded (System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs e);" />
8499       <MemberType>Method</MemberType>
8500       <ReturnValue>
8501         <ReturnType>System.Void</ReturnType>
8502       </ReturnValue>
8503       <Parameters>
8504         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs" />
8505       </Parameters>
8506       <Docs>
8507         <since version=".NET 2.0" />
8508         <remarks>
8509           <attribution license="cc4" from="Microsoft" modified="false" />
8510           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8511           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowContextMenuStripNeeded(System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8512         </remarks>
8513         <summary>
8514           <attribution license="cc4" from="Microsoft" modified="false" />
8515           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event. </para>
8516         </summary>
8517         <param name="e">
8518           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs" /> that contains the event data. </param>
8519       </Docs>
8520       <AssemblyInfo>
8521         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8522       </AssemblyInfo>
8523     </Member>
8524     <Member MemberName="OnRowDefaultCellStyleChanged">
8525       <MemberSignature Language="C#" Value="protected virtual void OnRowDefaultCellStyleChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8526       <MemberType>Method</MemberType>
8527       <AssemblyInfo>
8528         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8529       </AssemblyInfo>
8530       <ReturnValue>
8531         <ReturnType>System.Void</ReturnType>
8532       </ReturnValue>
8533       <Parameters>
8534         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8535       </Parameters>
8536       <Docs>
8537         <remarks>
8538           <attribution license="cc4" from="Microsoft" modified="false" />
8539           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8540           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowDefaultCellStyleChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8541         </remarks>
8542         <summary>
8543           <attribution license="cc4" from="Microsoft" modified="false" />
8544           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDefaultCellStyleChanged" /> event.</para>
8545         </summary>
8546         <param name="e">
8547           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8548       </Docs>
8549     </Member>
8550     <Member MemberName="OnRowDirtyStateNeeded">
8551       <MemberSignature Language="C#" Value="protected virtual void OnRowDirtyStateNeeded (System.Windows.Forms.QuestionEventArgs e);" />
8552       <MemberType>Method</MemberType>
8553       <ReturnValue>
8554         <ReturnType>System.Void</ReturnType>
8555       </ReturnValue>
8556       <Parameters>
8557         <Parameter Name="e" Type="System.Windows.Forms.QuestionEventArgs" />
8558       </Parameters>
8559       <Docs>
8560         <since version=".NET 2.0" />
8561         <remarks>
8562           <attribution license="cc4" from="Microsoft" modified="false" />
8563           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8564           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowDirtyStateNeeded(System.Windows.Forms.QuestionEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8565         </remarks>
8566         <summary>
8567           <attribution license="cc4" from="Microsoft" modified="false" />
8568           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDirtyStateNeeded" /> event.</para>
8569         </summary>
8570         <param name="e">
8571           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.QuestionEventArgs" /> that contains the event data. </param>
8572       </Docs>
8573       <AssemblyInfo>
8574         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8575       </AssemblyInfo>
8576     </Member>
8577     <Member MemberName="OnRowDividerDoubleClick">
8578       <MemberSignature Language="C#" Value="protected virtual void OnRowDividerDoubleClick (System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs e);" />
8579       <MemberType>Method</MemberType>
8580       <ReturnValue>
8581         <ReturnType>System.Void</ReturnType>
8582       </ReturnValue>
8583       <Parameters>
8584         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs" />
8585       </Parameters>
8586       <Docs>
8587         <since version=".NET 2.0" />
8588         <remarks>
8589           <attribution license="cc4" from="Microsoft" modified="false" />
8590           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8591           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowDividerDoubleClick(System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8592         </remarks>
8593         <summary>
8594           <attribution license="cc4" from="Microsoft" modified="false" />
8595           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDividerDoubleClick" /> event. </para>
8596         </summary>
8597         <param name="e">
8598           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowDividerDoubleClickEventArgs" /> that contains the event data. </param>
8599       </Docs>
8600       <AssemblyInfo>
8601         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8602       </AssemblyInfo>
8603     </Member>
8604     <Member MemberName="OnRowDividerHeightChanged">
8605       <MemberSignature Language="C#" Value="protected virtual void OnRowDividerHeightChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8606       <MemberType>Method</MemberType>
8607       <ReturnValue>
8608         <ReturnType>System.Void</ReturnType>
8609       </ReturnValue>
8610       <Parameters>
8611         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8612       </Parameters>
8613       <Docs>
8614         <since version=".NET 2.0" />
8615         <remarks>
8616           <attribution license="cc4" from="Microsoft" modified="false" />
8617           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8618           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowDividerHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8619         </remarks>
8620         <summary>
8621           <attribution license="cc4" from="Microsoft" modified="false" />
8622           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowDividerHeightChanged" /> event. </para>
8623         </summary>
8624         <param name="e">
8625           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8626       </Docs>
8627       <AssemblyInfo>
8628         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8629       </AssemblyInfo>
8630     </Member>
8631     <Member MemberName="OnRowEnter">
8632       <MemberSignature Language="C#" Value="protected virtual void OnRowEnter (System.Windows.Forms.DataGridViewCellEventArgs e);" />
8633       <MemberType>Method</MemberType>
8634       <ReturnValue>
8635         <ReturnType>System.Void</ReturnType>
8636       </ReturnValue>
8637       <Parameters>
8638         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
8639       </Parameters>
8640       <Docs>
8641         <since version=".NET 2.0" />
8642         <remarks>
8643           <attribution license="cc4" from="Microsoft" modified="false" />
8644           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8645           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowEnter(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8646         </remarks>
8647         <summary>
8648           <attribution license="cc4" from="Microsoft" modified="false" />
8649           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowEnter" /> event.</para>
8650         </summary>
8651         <param name="e">
8652           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
8653       </Docs>
8654       <AssemblyInfo>
8655         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8656       </AssemblyInfo>
8657     </Member>
8658     <Member MemberName="OnRowErrorTextChanged">
8659       <MemberSignature Language="C#" Value="protected virtual void OnRowErrorTextChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8660       <MemberType>Method</MemberType>
8661       <AssemblyInfo>
8662         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8663       </AssemblyInfo>
8664       <ReturnValue>
8665         <ReturnType>System.Void</ReturnType>
8666       </ReturnValue>
8667       <Parameters>
8668         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8669       </Parameters>
8670       <Docs>
8671         <remarks>
8672           <attribution license="cc4" from="Microsoft" modified="false" />
8673           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8674           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowErrorTextChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8675         </remarks>
8676         <summary>
8677           <attribution license="cc4" from="Microsoft" modified="false" />
8678           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextChanged" /> event.</para>
8679         </summary>
8680         <param name="e">
8681           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8682       </Docs>
8683     </Member>
8684     <Member MemberName="OnRowErrorTextNeeded">
8685       <MemberSignature Language="C#" Value="protected virtual void OnRowErrorTextNeeded (System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs e);" />
8686       <MemberType>Method</MemberType>
8687       <ReturnValue>
8688         <ReturnType>System.Void</ReturnType>
8689       </ReturnValue>
8690       <Parameters>
8691         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs" />
8692       </Parameters>
8693       <Docs>
8694         <since version=".NET 2.0" />
8695         <remarks>
8696           <attribution license="cc4" from="Microsoft" modified="false" />
8697           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8698           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowErrorTextNeeded(System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8699         </remarks>
8700         <summary>
8701           <attribution license="cc4" from="Microsoft" modified="false" />
8702           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event. </para>
8703         </summary>
8704         <param name="e">
8705           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs" /> that contains the event data. </param>
8706       </Docs>
8707       <AssemblyInfo>
8708         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8709       </AssemblyInfo>
8710     </Member>
8711     <Member MemberName="OnRowHeaderCellChanged">
8712       <MemberSignature Language="C#" Value="protected virtual void OnRowHeaderCellChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8713       <MemberType>Method</MemberType>
8714       <AssemblyInfo>
8715         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8716       </AssemblyInfo>
8717       <ReturnValue>
8718         <ReturnType>System.Void</ReturnType>
8719       </ReturnValue>
8720       <Parameters>
8721         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8722       </Parameters>
8723       <Docs>
8724         <remarks>
8725           <attribution license="cc4" from="Microsoft" modified="false" />
8726           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8727           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeaderCellChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8728         </remarks>
8729         <summary>
8730           <attribution license="cc4" from="Microsoft" modified="false" />
8731           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeaderCellChanged" /> event.</para>
8732         </summary>
8733         <param name="e">
8734           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8735       </Docs>
8736     </Member>
8737     <Member MemberName="OnRowHeaderMouseClick">
8738       <MemberSignature Language="C#" Value="protected virtual void OnRowHeaderMouseClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
8739       <MemberType>Method</MemberType>
8740       <ReturnValue>
8741         <ReturnType>System.Void</ReturnType>
8742       </ReturnValue>
8743       <Parameters>
8744         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
8745       </Parameters>
8746       <Docs>
8747         <remarks>To be added.</remarks>
8748         <since version=".NET 2.0" />
8749         <summary>
8750           <attribution license="cc4" from="Microsoft" modified="false" />
8751           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeaderMouseClick" /> event.</para>
8752         </summary>
8753         <param name="e">
8754           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse and the header cell that was clicked.</param>
8755       </Docs>
8756       <AssemblyInfo>
8757         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8758       </AssemblyInfo>
8759     </Member>
8760     <Member MemberName="OnRowHeaderMouseDoubleClick">
8761       <MemberSignature Language="C#" Value="protected virtual void OnRowHeaderMouseDoubleClick (System.Windows.Forms.DataGridViewCellMouseEventArgs e);" />
8762       <MemberType>Method</MemberType>
8763       <ReturnValue>
8764         <ReturnType>System.Void</ReturnType>
8765       </ReturnValue>
8766       <Parameters>
8767         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellMouseEventArgs" />
8768       </Parameters>
8769       <Docs>
8770         <remarks>To be added.</remarks>
8771         <since version=".NET 2.0" />
8772         <summary>
8773           <attribution license="cc4" from="Microsoft" modified="false" />
8774           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeaderMouseDoubleClick" /> event.</para>
8775         </summary>
8776         <param name="e">
8777           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellMouseEventArgs" /> that contains information about the mouse and the header cell that was double-clicked.</param>
8778       </Docs>
8779       <AssemblyInfo>
8780         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8781       </AssemblyInfo>
8782     </Member>
8783     <Member MemberName="OnRowHeadersBorderStyleChanged">
8784       <MemberSignature Language="C#" Value="protected virtual void OnRowHeadersBorderStyleChanged (EventArgs e);" />
8785       <MemberType>Method</MemberType>
8786       <ReturnValue>
8787         <ReturnType>System.Void</ReturnType>
8788       </ReturnValue>
8789       <Parameters>
8790         <Parameter Name="e" Type="System.EventArgs" />
8791       </Parameters>
8792       <Docs>
8793         <since version=".NET 2.0" />
8794         <remarks>
8795           <attribution license="cc4" from="Microsoft" modified="false" />
8796           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8797           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeadersBorderStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8798         </remarks>
8799         <summary>
8800           <attribution license="cc4" from="Microsoft" modified="false" />
8801           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersBorderStyleChanged" /> event. </para>
8802         </summary>
8803         <param name="e">
8804           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8805       </Docs>
8806       <AssemblyInfo>
8807         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8808       </AssemblyInfo>
8809     </Member>
8810     <Member MemberName="OnRowHeadersDefaultCellStyleChanged">
8811       <MemberSignature Language="C#" Value="protected virtual void OnRowHeadersDefaultCellStyleChanged (EventArgs e);" />
8812       <MemberType>Method</MemberType>
8813       <ReturnValue>
8814         <ReturnType>System.Void</ReturnType>
8815       </ReturnValue>
8816       <Parameters>
8817         <Parameter Name="e" Type="System.EventArgs" />
8818       </Parameters>
8819       <Docs>
8820         <since version=".NET 2.0" />
8821         <remarks>
8822           <attribution license="cc4" from="Microsoft" modified="false" />
8823           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8824           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeadersDefaultCellStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8825         </remarks>
8826         <summary>
8827           <attribution license="cc4" from="Microsoft" modified="false" />
8828           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyleChanged" /> event.</para>
8829         </summary>
8830         <param name="e">
8831           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8832       </Docs>
8833       <AssemblyInfo>
8834         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8835       </AssemblyInfo>
8836     </Member>
8837     <Member MemberName="OnRowHeadersWidthChanged">
8838       <MemberSignature Language="C#" Value="protected virtual void OnRowHeadersWidthChanged (EventArgs e);" />
8839       <MemberType>Method</MemberType>
8840       <ReturnValue>
8841         <ReturnType>System.Void</ReturnType>
8842       </ReturnValue>
8843       <Parameters>
8844         <Parameter Name="e" Type="System.EventArgs" />
8845       </Parameters>
8846       <Docs>
8847         <since version=".NET 2.0" />
8848         <remarks>
8849           <attribution license="cc4" from="Microsoft" modified="false" />
8850           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8851           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeadersWidthChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8852         </remarks>
8853         <summary>
8854           <attribution license="cc4" from="Microsoft" modified="false" />
8855           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersWidthChanged" /> event.</para>
8856         </summary>
8857         <param name="e">
8858           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
8859       </Docs>
8860       <AssemblyInfo>
8861         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8862       </AssemblyInfo>
8863     </Member>
8864     <Member MemberName="OnRowHeadersWidthSizeModeChanged">
8865       <MemberSignature Language="C#" Value="protected virtual void OnRowHeadersWidthSizeModeChanged (System.Windows.Forms.DataGridViewAutoSizeModeEventArgs e);" />
8866       <MemberType>Method</MemberType>
8867       <ReturnValue>
8868         <ReturnType>System.Void</ReturnType>
8869       </ReturnValue>
8870       <Parameters>
8871         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" />
8872       </Parameters>
8873       <Docs>
8874         <since version=".NET 2.0" />
8875         <remarks>
8876           <attribution license="cc4" from="Microsoft" modified="false" />
8877           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8878           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeadersWidthSizeModeChanged(System.Windows.Forms.DataGridViewAutoSizeModeEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8879         </remarks>
8880         <summary>
8881           <attribution license="cc4" from="Microsoft" modified="false" />
8882           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeadersWidthSizeModeChanged" /> event. </para>
8883         </summary>
8884         <param name="e">
8885           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewAutoSizeModeEventArgs" /> that contains the event data. </param>
8886       </Docs>
8887       <AssemblyInfo>
8888         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8889       </AssemblyInfo>
8890     </Member>
8891     <Member MemberName="OnRowHeightChanged">
8892       <MemberSignature Language="C#" Value="protected virtual void OnRowHeightChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
8893       <MemberType>Method</MemberType>
8894       <AssemblyInfo>
8895         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8896       </AssemblyInfo>
8897       <ReturnValue>
8898         <ReturnType>System.Void</ReturnType>
8899       </ReturnValue>
8900       <Parameters>
8901         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
8902       </Parameters>
8903       <Docs>
8904         <remarks>
8905           <attribution license="cc4" from="Microsoft" modified="false" />
8906           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8907           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8908         </remarks>
8909         <summary>
8910           <attribution license="cc4" from="Microsoft" modified="false" />
8911           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeightChanged" /> event.</para>
8912         </summary>
8913         <param name="e">
8914           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
8915       </Docs>
8916     </Member>
8917     <Member MemberName="OnRowHeightInfoNeeded">
8918       <MemberSignature Language="C#" Value="protected virtual void OnRowHeightInfoNeeded (System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs e);" />
8919       <MemberType>Method</MemberType>
8920       <ReturnValue>
8921         <ReturnType>System.Void</ReturnType>
8922       </ReturnValue>
8923       <Parameters>
8924         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs" />
8925       </Parameters>
8926       <Docs>
8927         <since version=".NET 2.0" />
8928         <remarks>
8929           <attribution license="cc4" from="Microsoft" modified="false" />
8930           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8931           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeightInfoNeeded(System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8932         </remarks>
8933         <summary>
8934           <attribution license="cc4" from="Microsoft" modified="false" />
8935           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> event. </para>
8936         </summary>
8937         <param name="e">
8938           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoNeededEventArgs" /> that contains the event data. </param>
8939       </Docs>
8940       <AssemblyInfo>
8941         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8942       </AssemblyInfo>
8943     </Member>
8944     <Member MemberName="OnRowHeightInfoPushed">
8945       <MemberSignature Language="C#" Value="protected virtual void OnRowHeightInfoPushed (System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs e);" />
8946       <MemberType>Method</MemberType>
8947       <ReturnValue>
8948         <ReturnType>System.Void</ReturnType>
8949       </ReturnValue>
8950       <Parameters>
8951         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs" />
8952       </Parameters>
8953       <Docs>
8954         <since version=".NET 2.0" />
8955         <remarks>
8956           <attribution license="cc4" from="Microsoft" modified="false" />
8957           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
8958           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowHeightInfoPushed(System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8959         </remarks>
8960         <summary>
8961           <attribution license="cc4" from="Microsoft" modified="false" />
8962           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> event. </para>
8963         </summary>
8964         <param name="e">
8965           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowHeightInfoPushedEventArgs" /> that contains the event data. </param>
8966       </Docs>
8967       <AssemblyInfo>
8968         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8969       </AssemblyInfo>
8970     </Member>
8971     <Member MemberName="OnRowLeave">
8972       <MemberSignature Language="C#" Value="protected virtual void OnRowLeave (System.Windows.Forms.DataGridViewCellEventArgs e);" />
8973       <MemberType>Method</MemberType>
8974       <ReturnValue>
8975         <ReturnType>System.Void</ReturnType>
8976       </ReturnValue>
8977       <Parameters>
8978         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
8979       </Parameters>
8980       <Docs>
8981         <since version=".NET 2.0" />
8982         <remarks>
8983           <attribution license="cc4" from="Microsoft" modified="false" />
8984           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
8985           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowLeave(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
8986         </remarks>
8987         <summary>
8988           <attribution license="cc4" from="Microsoft" modified="false" />
8989           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowLeave" /> event.</para>
8990         </summary>
8991         <param name="e">
8992           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
8993       </Docs>
8994       <AssemblyInfo>
8995         <AssemblyVersion>2.0.0.0</AssemblyVersion>
8996       </AssemblyInfo>
8997     </Member>
8998     <Member MemberName="OnRowMinimumHeightChanged">
8999       <MemberSignature Language="C#" Value="protected virtual void OnRowMinimumHeightChanged (System.Windows.Forms.DataGridViewRowEventArgs e);" />
9000       <MemberType>Method</MemberType>
9001       <AssemblyInfo>
9002         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9003       </AssemblyInfo>
9004       <ReturnValue>
9005         <ReturnType>System.Void</ReturnType>
9006       </ReturnValue>
9007       <Parameters>
9008         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
9009       </Parameters>
9010       <Docs>
9011         <remarks>
9012           <attribution license="cc4" from="Microsoft" modified="false" />
9013           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9014           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowMinimumHeightChanged(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9015         </remarks>
9016         <summary>
9017           <attribution license="cc4" from="Microsoft" modified="false" />
9018           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowMinimumHeightChanged" /> event.</para>
9019         </summary>
9020         <param name="e">
9021           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
9022       </Docs>
9023     </Member>
9024     <Member MemberName="OnRowPostPaint">
9025       <MemberSignature Language="C#" Value="protected virtual void OnRowPostPaint (System.Windows.Forms.DataGridViewRowPostPaintEventArgs e);" />
9026       <MemberType>Method</MemberType>
9027       <AssemblyInfo>
9028         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9029       </AssemblyInfo>
9030       <ReturnValue>
9031         <ReturnType>System.Void</ReturnType>
9032       </ReturnValue>
9033       <Parameters>
9034         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowPostPaintEventArgs" />
9035       </Parameters>
9036       <Docs>
9037         <remarks>
9038           <attribution license="cc4" from="Microsoft" modified="false" />
9039           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9040           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowPostPaint(System.Windows.Forms.DataGridViewRowPostPaintEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9041         </remarks>
9042         <summary>
9043           <attribution license="cc4" from="Microsoft" modified="false" />
9044           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowPostPaint" /> event. </para>
9045         </summary>
9046         <param name="e">
9047           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs" /> that contains the event data. </param>
9048       </Docs>
9049     </Member>
9050     <Member MemberName="OnRowPrePaint">
9051       <MemberSignature Language="C#" Value="protected virtual void OnRowPrePaint (System.Windows.Forms.DataGridViewRowPrePaintEventArgs e);" />
9052       <MemberType>Method</MemberType>
9053       <AssemblyInfo>
9054         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9055       </AssemblyInfo>
9056       <ReturnValue>
9057         <ReturnType>System.Void</ReturnType>
9058       </ReturnValue>
9059       <Parameters>
9060         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowPrePaintEventArgs" />
9061       </Parameters>
9062       <Docs>
9063         <remarks>
9064           <attribution license="cc4" from="Microsoft" modified="false" />
9065           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9066           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowPrePaint(System.Windows.Forms.DataGridViewRowPrePaintEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9067         </remarks>
9068         <summary>
9069           <attribution license="cc4" from="Microsoft" modified="false" />
9070           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowPrePaint" /> event.</para>
9071         </summary>
9072         <param name="e">
9073           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs" /> that contains the event data. </param>
9074       </Docs>
9075     </Member>
9076     <Member MemberName="OnRowsAdded">
9077       <MemberSignature Language="C#" Value="protected virtual void OnRowsAdded (System.Windows.Forms.DataGridViewRowsAddedEventArgs e);" />
9078       <MemberType>Method</MemberType>
9079       <AssemblyInfo>
9080         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9081       </AssemblyInfo>
9082       <ReturnValue>
9083         <ReturnType>System.Void</ReturnType>
9084       </ReturnValue>
9085       <Parameters>
9086         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowsAddedEventArgs" />
9087       </Parameters>
9088       <Docs>
9089         <remarks>
9090           <attribution license="cc4" from="Microsoft" modified="false" />
9091           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9092           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowsAdded(System.Windows.Forms.DataGridViewRowsAddedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9093         </remarks>
9094         <summary>
9095           <attribution license="cc4" from="Microsoft" modified="false" />
9096           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowsAdded" /> event. </para>
9097         </summary>
9098         <param name="e">
9099           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowsAddedEventArgs" /> that contains information about the added rows. </param>
9100       </Docs>
9101     </Member>
9102     <Member MemberName="OnRowsDefaultCellStyleChanged">
9103       <MemberSignature Language="C#" Value="protected virtual void OnRowsDefaultCellStyleChanged (EventArgs e);" />
9104       <MemberType>Method</MemberType>
9105       <ReturnValue>
9106         <ReturnType>System.Void</ReturnType>
9107       </ReturnValue>
9108       <Parameters>
9109         <Parameter Name="e" Type="System.EventArgs" />
9110       </Parameters>
9111       <Docs>
9112         <since version=".NET 2.0" />
9113         <remarks>
9114           <attribution license="cc4" from="Microsoft" modified="false" />
9115           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9116           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowsDefaultCellStyleChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9117         </remarks>
9118         <summary>
9119           <attribution license="cc4" from="Microsoft" modified="false" />
9120           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowsDefaultCellStyleChanged" /> event.</para>
9121         </summary>
9122         <param name="e">
9123           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
9124       </Docs>
9125       <AssemblyInfo>
9126         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9127       </AssemblyInfo>
9128     </Member>
9129     <Member MemberName="OnRowsRemoved">
9130       <MemberSignature Language="C#" Value="protected virtual void OnRowsRemoved (System.Windows.Forms.DataGridViewRowsRemovedEventArgs e);" />
9131       <MemberType>Method</MemberType>
9132       <AssemblyInfo>
9133         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9134       </AssemblyInfo>
9135       <ReturnValue>
9136         <ReturnType>System.Void</ReturnType>
9137       </ReturnValue>
9138       <Parameters>
9139         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowsRemovedEventArgs" />
9140       </Parameters>
9141       <Docs>
9142         <remarks>
9143           <attribution license="cc4" from="Microsoft" modified="false" />
9144           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9145           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowsRemoved(System.Windows.Forms.DataGridViewRowsRemovedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9146         </remarks>
9147         <summary>
9148           <attribution license="cc4" from="Microsoft" modified="false" />
9149           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowsRemoved" /> event. </para>
9150         </summary>
9151         <param name="e">
9152           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowsRemovedEventArgs" /> that contains information about the deleted rows. </param>
9153       </Docs>
9154     </Member>
9155     <Member MemberName="OnRowStateChanged">
9156       <MemberSignature Language="C#" Value="protected virtual void OnRowStateChanged (int rowIndex, System.Windows.Forms.DataGridViewRowStateChangedEventArgs e);" />
9157       <MemberType>Method</MemberType>
9158       <AssemblyInfo>
9159         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9160       </AssemblyInfo>
9161       <ReturnValue>
9162         <ReturnType>System.Void</ReturnType>
9163       </ReturnValue>
9164       <Parameters>
9165         <Parameter Name="rowIndex" Type="System.Int32" />
9166         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowStateChangedEventArgs" />
9167       </Parameters>
9168       <Docs>
9169         <remarks>
9170           <attribution license="cc4" from="Microsoft" modified="false" />
9171           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9172           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowStateChanged(System.Int32,System.Windows.Forms.DataGridViewRowStateChangedEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9173         </remarks>
9174         <summary>
9175           <attribution license="cc4" from="Microsoft" modified="false" />
9176           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowStateChanged" /> event.</para>
9177         </summary>
9178         <param name="rowIndex">
9179           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row that is changing state.</param>
9180         <param name="e">
9181           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowStateChangedEventArgs" /> that contains the event data. </param>
9182       </Docs>
9183     </Member>
9184     <Member MemberName="OnRowUnshared">
9185       <MemberSignature Language="C#" Value="protected virtual void OnRowUnshared (System.Windows.Forms.DataGridViewRowEventArgs e);" />
9186       <MemberType>Method</MemberType>
9187       <ReturnValue>
9188         <ReturnType>System.Void</ReturnType>
9189       </ReturnValue>
9190       <Parameters>
9191         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
9192       </Parameters>
9193       <Docs>
9194         <since version=".NET 2.0" />
9195         <remarks>
9196           <attribution license="cc4" from="Microsoft" modified="false" />
9197           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9198           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowUnshared(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9199         </remarks>
9200         <summary>
9201           <attribution license="cc4" from="Microsoft" modified="false" />
9202           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowUnshared" /> event.</para>
9203         </summary>
9204         <param name="e">
9205           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
9206       </Docs>
9207       <AssemblyInfo>
9208         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9209       </AssemblyInfo>
9210     </Member>
9211     <Member MemberName="OnRowValidated">
9212       <MemberSignature Language="C#" Value="protected virtual void OnRowValidated (System.Windows.Forms.DataGridViewCellEventArgs e);" />
9213       <MemberType>Method</MemberType>
9214       <ReturnValue>
9215         <ReturnType>System.Void</ReturnType>
9216       </ReturnValue>
9217       <Parameters>
9218         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellEventArgs" />
9219       </Parameters>
9220       <Docs>
9221         <since version=".NET 2.0" />
9222         <remarks>
9223           <attribution license="cc4" from="Microsoft" modified="false" />
9224           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9225           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowValidated(System.Windows.Forms.DataGridViewCellEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9226         </remarks>
9227         <summary>
9228           <attribution license="cc4" from="Microsoft" modified="false" />
9229           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowValidated" /> event.</para>
9230         </summary>
9231         <param name="e">
9232           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellEventArgs" /> that contains the event data. </param>
9233       </Docs>
9234       <AssemblyInfo>
9235         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9236       </AssemblyInfo>
9237     </Member>
9238     <Member MemberName="OnRowValidating">
9239       <MemberSignature Language="C#" Value="protected virtual void OnRowValidating (System.Windows.Forms.DataGridViewCellCancelEventArgs e);" />
9240       <MemberType>Method</MemberType>
9241       <ReturnValue>
9242         <ReturnType>System.Void</ReturnType>
9243       </ReturnValue>
9244       <Parameters>
9245         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewCellCancelEventArgs" />
9246       </Parameters>
9247       <Docs>
9248         <since version=".NET 2.0" />
9249         <remarks>
9250           <attribution license="cc4" from="Microsoft" modified="false" />
9251           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9252           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnRowValidating(System.Windows.Forms.DataGridViewCellCancelEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9253         </remarks>
9254         <summary>
9255           <attribution license="cc4" from="Microsoft" modified="false" />
9256           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.RowValidating" /> event.</para>
9257         </summary>
9258         <param name="e">
9259           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewCellCancelEventArgs" /> that contains the event data. </param>
9260       </Docs>
9261       <AssemblyInfo>
9262         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9263       </AssemblyInfo>
9264     </Member>
9265     <Member MemberName="OnScroll">
9266       <MemberSignature Language="C#" Value="protected virtual void OnScroll (System.Windows.Forms.ScrollEventArgs e);" />
9267       <MemberType>Method</MemberType>
9268       <ReturnValue>
9269         <ReturnType>System.Void</ReturnType>
9270       </ReturnValue>
9271       <Parameters>
9272         <Parameter Name="e" Type="System.Windows.Forms.ScrollEventArgs" />
9273       </Parameters>
9274       <Docs>
9275         <since version=".NET 2.0" />
9276         <remarks>
9277           <attribution license="cc4" from="Microsoft" modified="false" />
9278           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9279           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnScroll(System.Windows.Forms.ScrollEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9280         </remarks>
9281         <summary>
9282           <attribution license="cc4" from="Microsoft" modified="false" />
9283           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.Scroll" /> event. </para>
9284         </summary>
9285         <param name="e">
9286           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.ScrollEventArgs" /> that contains the event data. </param>
9287       </Docs>
9288       <AssemblyInfo>
9289         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9290       </AssemblyInfo>
9291     </Member>
9292     <Member MemberName="OnSelectionChanged">
9293       <MemberSignature Language="C#" Value="protected virtual void OnSelectionChanged (EventArgs e);" />
9294       <MemberType>Method</MemberType>
9295       <ReturnValue>
9296         <ReturnType>System.Void</ReturnType>
9297       </ReturnValue>
9298       <Parameters>
9299         <Parameter Name="e" Type="System.EventArgs" />
9300       </Parameters>
9301       <Docs>
9302         <since version=".NET 2.0" />
9303         <remarks>
9304           <attribution license="cc4" from="Microsoft" modified="false" />
9305           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9306           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnSelectionChanged(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9307         </remarks>
9308         <summary>
9309           <attribution license="cc4" from="Microsoft" modified="false" />
9310           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.SelectionChanged" /> event.</para>
9311         </summary>
9312         <param name="e">
9313           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains information about the event.</param>
9314       </Docs>
9315       <AssemblyInfo>
9316         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9317       </AssemblyInfo>
9318     </Member>
9319     <Member MemberName="OnSortCompare">
9320       <MemberSignature Language="C#" Value="protected virtual void OnSortCompare (System.Windows.Forms.DataGridViewSortCompareEventArgs e);" />
9321       <MemberType>Method</MemberType>
9322       <ReturnValue>
9323         <ReturnType>System.Void</ReturnType>
9324       </ReturnValue>
9325       <Parameters>
9326         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewSortCompareEventArgs" />
9327       </Parameters>
9328       <Docs>
9329         <since version=".NET 2.0" />
9330         <remarks>
9331           <attribution license="cc4" from="Microsoft" modified="false" />
9332           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9333           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnSortCompare(System.Windows.Forms.DataGridViewSortCompareEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9334         </remarks>
9335         <summary>
9336           <attribution license="cc4" from="Microsoft" modified="false" />
9337           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event.</para>
9338         </summary>
9339         <param name="e">
9340           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewSortCompareEventArgs" /> that contains the event data. </param>
9341       </Docs>
9342       <AssemblyInfo>
9343         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9344       </AssemblyInfo>
9345     </Member>
9346     <Member MemberName="OnSorted">
9347       <MemberSignature Language="C#" Value="protected virtual void OnSorted (EventArgs e);" />
9348       <MemberType>Method</MemberType>
9349       <ReturnValue>
9350         <ReturnType>System.Void</ReturnType>
9351       </ReturnValue>
9352       <Parameters>
9353         <Parameter Name="e" Type="System.EventArgs" />
9354       </Parameters>
9355       <Docs>
9356         <since version=".NET 2.0" />
9357         <remarks>
9358           <attribution license="cc4" from="Microsoft" modified="false" />
9359           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
9360           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnSorted(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9361         </remarks>
9362         <summary>
9363           <attribution license="cc4" from="Microsoft" modified="false" />
9364           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.Sorted" /> event. </para>
9365         </summary>
9366         <param name="e">
9367           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
9368       </Docs>
9369       <AssemblyInfo>
9370         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9371       </AssemblyInfo>
9372     </Member>
9373     <Member MemberName="OnUserAddedRow">
9374       <MemberSignature Language="C#" Value="protected virtual void OnUserAddedRow (System.Windows.Forms.DataGridViewRowEventArgs e);" />
9375       <MemberType>Method</MemberType>
9376       <ReturnValue>
9377         <ReturnType>System.Void</ReturnType>
9378       </ReturnValue>
9379       <Parameters>
9380         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
9381       </Parameters>
9382       <Docs>
9383         <since version=".NET 2.0" />
9384         <remarks>
9385           <attribution license="cc4" from="Microsoft" modified="false" />
9386           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9387           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnUserAddedRow(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9388         </remarks>
9389         <summary>
9390           <attribution license="cc4" from="Microsoft" modified="false" />
9391           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.UserAddedRow" /> event.</para>
9392         </summary>
9393         <param name="e">
9394           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
9395       </Docs>
9396       <AssemblyInfo>
9397         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9398       </AssemblyInfo>
9399     </Member>
9400     <Member MemberName="OnUserDeletedRow">
9401       <MemberSignature Language="C#" Value="protected virtual void OnUserDeletedRow (System.Windows.Forms.DataGridViewRowEventArgs e);" />
9402       <MemberType>Method</MemberType>
9403       <ReturnValue>
9404         <ReturnType>System.Void</ReturnType>
9405       </ReturnValue>
9406       <Parameters>
9407         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowEventArgs" />
9408       </Parameters>
9409       <Docs>
9410         <since version=".NET 2.0" />
9411         <remarks>
9412           <attribution license="cc4" from="Microsoft" modified="false" />
9413           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9414           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnUserDeletedRow(System.Windows.Forms.DataGridViewRowEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9415         </remarks>
9416         <summary>
9417           <attribution license="cc4" from="Microsoft" modified="false" />
9418           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.UserDeletedRow" /> event.</para>
9419         </summary>
9420         <param name="e">
9421           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowEventArgs" /> that contains the event data. </param>
9422       </Docs>
9423       <AssemblyInfo>
9424         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9425       </AssemblyInfo>
9426     </Member>
9427     <Member MemberName="OnUserDeletingRow">
9428       <MemberSignature Language="C#" Value="protected virtual void OnUserDeletingRow (System.Windows.Forms.DataGridViewRowCancelEventArgs e);" />
9429       <MemberType>Method</MemberType>
9430       <ReturnValue>
9431         <ReturnType>System.Void</ReturnType>
9432       </ReturnValue>
9433       <Parameters>
9434         <Parameter Name="e" Type="System.Windows.Forms.DataGridViewRowCancelEventArgs" />
9435       </Parameters>
9436       <Docs>
9437         <since version=".NET 2.0" />
9438         <remarks>
9439           <attribution license="cc4" from="Microsoft" modified="false" />
9440           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9441           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnUserDeletingRow(System.Windows.Forms.DataGridViewRowCancelEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9442         </remarks>
9443         <summary>
9444           <attribution license="cc4" from="Microsoft" modified="false" />
9445           <para>Raises the <see cref="E:System.Windows.Forms.DataGridView.UserDeletingRow" /> event.</para>
9446         </summary>
9447         <param name="e">
9448           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Windows.Forms.DataGridViewRowCancelEventArgs" /> that contains the event data. </param>
9449       </Docs>
9450       <AssemblyInfo>
9451         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9452       </AssemblyInfo>
9453     </Member>
9454     <Member MemberName="OnValidating">
9455       <MemberSignature Language="C#" Value="protected override void OnValidating (System.ComponentModel.CancelEventArgs e);" />
9456       <MemberType>Method</MemberType>
9457       <ReturnValue>
9458         <ReturnType>System.Void</ReturnType>
9459       </ReturnValue>
9460       <Parameters>
9461         <Parameter Name="e" Type="System.ComponentModel.CancelEventArgs" />
9462       </Parameters>
9463       <Docs>
9464         <since version=".NET 2.0" />
9465         <remarks>
9466           <attribution license="cc4" from="Microsoft" modified="false" />
9467           <para>In addition to raising the <see cref="E:System.Windows.Forms.Control.Validating" /> event, this method ends the current cell edit and validates the cell and row values. </para>
9468           <para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="F2ADAF01-1ED1-42E1-8C31-8D467E7E0EE2">Raising an Event</a></format>.</para>
9469           <para>The <see cref="M:System.Windows.Forms.DataGridView.OnValidating(System.ComponentModel.CancelEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
9470         </remarks>
9471         <summary>
9472           <attribution license="cc4" from="Microsoft" modified="false" />
9473           <para>Raises the <see cref="E:System.Windows.Forms.Control.Validating" /> event.</para>
9474         </summary>
9475         <param name="e">
9476           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data. </param>
9477       </Docs>
9478       <AssemblyInfo>
9479         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9480       </AssemblyInfo>
9481     </Member>
9482     <Member MemberName="OnVisibleChanged">
9483       <MemberSignature Language="C#" Value="protected override void OnVisibleChanged (EventArgs e);" />
9484       <MemberType>Method</MemberType>
9485       <ReturnValue>
9486         <ReturnType>System.Void</ReturnType>
9487       </ReturnValue>
9488       <Parameters>
9489         <Parameter Name="e" Type="System.EventArgs" />
9490       </Parameters>
9491       <Docs>
9492         <param name="e">To be added.</param>
9493         <summary>To be added.</summary>
9494         <remarks>To be added.</remarks>
9495         <since version=".NET 2.0" />
9496       </Docs>
9497       <AssemblyInfo>
9498         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9499       </AssemblyInfo>
9500     </Member>
9501     <Member MemberName="Padding">
9502       <MemberSignature Language="C#" Value="public System.Windows.Forms.Padding Padding { set; get; }" />
9503       <MemberType>Property</MemberType>
9504       <Attributes>
9505         <Attribute>
9506           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
9507         </Attribute>
9508         <Attribute>
9509           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
9510         </Attribute>
9511         <Attribute>
9512           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
9513         </Attribute>
9514       </Attributes>
9515       <ReturnValue>
9516         <ReturnType>System.Windows.Forms.Padding</ReturnType>
9517       </ReturnValue>
9518       <Docs>
9519         <value>To be added.</value>
9520         <since version=".NET 2.0" />
9521         <remarks>
9522           <attribution license="cc4" from="Microsoft" modified="false" />
9523           <para>This property is not relevant for this control.</para>
9524         </remarks>
9525         <summary>
9526           <attribution license="cc4" from="Microsoft" modified="false" />
9527           <para>This property is not relevant for this control.</para>
9528         </summary>
9529       </Docs>
9530       <AssemblyInfo>
9531         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9532       </AssemblyInfo>
9533     </Member>
9534     <Member MemberName="PaddingChanged">
9535       <MemberSignature Language="C#" Value="public event EventHandler PaddingChanged;" />
9536       <MemberType>Event</MemberType>
9537       <Attributes>
9538         <Attribute>
9539           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
9540         </Attribute>
9541         <Attribute>
9542           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
9543         </Attribute>
9544         <Attribute>
9545           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
9546         </Attribute>
9547       </Attributes>
9548       <ReturnValue>
9549         <ReturnType>System.EventHandler</ReturnType>
9550       </ReturnValue>
9551       <Docs>
9552         <since version=".NET 2.0" />
9553         <remarks>
9554           <attribution license="cc4" from="Microsoft" modified="false" />
9555           <para>The <see cref="P:System.Windows.Forms.DataGridView.Padding" /> property is not relevant for this control, although you can change its value and respond to such changes by handling this event.</para>
9556           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
9557         </remarks>
9558         <summary>
9559           <attribution license="cc4" from="Microsoft" modified="false" />
9560           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.Padding" /> property changes.</para>
9561         </summary>
9562       </Docs>
9563       <AssemblyInfo>
9564         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9565       </AssemblyInfo>
9566     </Member>
9567     <Member MemberName="PaintBackground">
9568       <MemberSignature Language="C#" Value="protected virtual void PaintBackground (System.Drawing.Graphics graphics, System.Drawing.Rectangle clipBounds, System.Drawing.Rectangle gridBounds);" />
9569       <MemberType>Method</MemberType>
9570       <ReturnValue>
9571         <ReturnType>System.Void</ReturnType>
9572       </ReturnValue>
9573       <Parameters>
9574         <Parameter Name="graphics" Type="System.Drawing.Graphics" />
9575         <Parameter Name="clipBounds" Type="System.Drawing.Rectangle" />
9576         <Parameter Name="gridBounds" Type="System.Drawing.Rectangle" />
9577       </Parameters>
9578       <Docs>
9579         <since version=".NET 2.0" />
9580         <remarks>
9581           <attribution license="cc4" from="Microsoft" modified="false" />
9582           <para>The <paramref name="clipBounds" /> parameter represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be repainted. For example, if a user covers the entire <see cref="T:System.Windows.Forms.DataGridView" /> with another window and then uncovers it, then <paramref name="clipBounds" /> represents the entire <see cref="T:System.Windows.Forms.DataGridView" />. If a user covers a small area of the <see cref="T:System.Windows.Forms.DataGridView" /> and then uncovers it, then <paramref name="clipBounds" /> represents the small area that was covered.</para>
9583         </remarks>
9584         <summary>
9585           <attribution license="cc4" from="Microsoft" modified="false" />
9586           <para>Paints the background of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
9587         </summary>
9588         <param name="graphics">
9589           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Graphics" /> used to paint the background.</param>
9590         <param name="clipBounds">
9591           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" /> that represents the area of the <see cref="T:System.Windows.Forms.DataGridView" /> that needs to be painted.</param>
9592         <param name="gridBounds">
9593           <attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Drawing.Rectangle" /> that represents the area in which cells are drawn.</param>
9594       </Docs>
9595       <AssemblyInfo>
9596         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9597       </AssemblyInfo>
9598     </Member>
9599     <Member MemberName="ProcessAKey">
9600       <MemberSignature Language="C#" Value="protected bool ProcessAKey (System.Windows.Forms.Keys keyData);" />
9601       <MemberType>Method</MemberType>
9602       <ReturnValue>
9603         <ReturnType>System.Boolean</ReturnType>
9604       </ReturnValue>
9605       <Parameters>
9606         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9607       </Parameters>
9608       <Docs>
9609         <since version=".NET 2.0" />
9610         <remarks>
9611           <attribution license="cc4" from="Microsoft" modified="false" />
9612           <para>This method returns true when the user presses CTRL+A and the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property is true. By default, this selects all cells in the control. </para>
9613         </remarks>
9614         <summary>
9615           <attribution license="cc4" from="Microsoft" modified="false" />
9616           <para>Processes the A key.</para>
9617         </summary>
9618         <returns>
9619           <attribution license="cc4" from="Microsoft" modified="false" />
9620           <para>true if the key was processed; otherwise, false.</para>
9621         </returns>
9622         <param name="keyData">
9623           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9624       </Docs>
9625       <AssemblyInfo>
9626         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9627       </AssemblyInfo>
9628     </Member>
9629     <Member MemberName="ProcessDataGridViewKey">
9630       <MemberSignature Language="C#" Value="protected virtual bool ProcessDataGridViewKey (System.Windows.Forms.KeyEventArgs e);" />
9631       <MemberType>Method</MemberType>
9632       <ReturnValue>
9633         <ReturnType>System.Boolean</ReturnType>
9634       </ReturnValue>
9635       <Parameters>
9636         <Parameter Name="e" Type="System.Windows.Forms.KeyEventArgs" />
9637       </Parameters>
9638       <Docs>
9639         <since version=".NET 2.0" />
9640         <remarks>
9641           <attribution license="cc4" from="Microsoft" modified="false" />
9642           <para>This method calls the key-processing method appropriate to the key pressed (for example, the <see cref="M:System.Windows.Forms.DataGridView.ProcessF2Key(System.Windows.Forms.Keys)" /> method when F2 is pressed) and returns the return value of that method. </para>
9643         </remarks>
9644         <summary>
9645           <attribution license="cc4" from="Microsoft" modified="false" />
9646           <para>Processes keys used for navigating in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
9647         </summary>
9648         <returns>
9649           <attribution license="cc4" from="Microsoft" modified="false" />
9650           <para>true if the key was processed; otherwise, false.</para>
9651         </returns>
9652         <param name="e">
9653           <attribution license="cc4" from="Microsoft" modified="false" />Contains information about the key that was pressed.</param>
9654       </Docs>
9655       <AssemblyInfo>
9656         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9657       </AssemblyInfo>
9658     </Member>
9659     <Member MemberName="ProcessDeleteKey">
9660       <MemberSignature Language="C#" Value="protected bool ProcessDeleteKey (System.Windows.Forms.Keys keyData);" />
9661       <MemberType>Method</MemberType>
9662       <ReturnValue>
9663         <ReturnType>System.Boolean</ReturnType>
9664       </ReturnValue>
9665       <Parameters>
9666         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9667       </Parameters>
9668       <Docs>
9669         <since version=".NET 2.0" />
9670         <remarks>
9671           <attribution license="cc4" from="Microsoft" modified="false" />
9672           <para>This method returns true when the user presses DELETE to delete rows in the control. The user can delete rows if the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property is set to <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect" /> and the <see cref="P:System.Windows.Forms.DataGridView.MultiSelect" /> property is set to true. If the <see cref="T:System.Windows.Forms.DataGridView" /> is bound to data, the <see cref="P:System.ComponentModel.IBindingList.AllowRemove" /> property of the data source must also be set to true.</para>
9673         </remarks>
9674         <summary>
9675           <attribution license="cc4" from="Microsoft" modified="false" />
9676           <para>Processes the DELETE key.</para>
9677         </summary>
9678         <returns>
9679           <attribution license="cc4" from="Microsoft" modified="false" />
9680           <para>true if the key was processed; otherwise, false.</para>
9681         </returns>
9682         <param name="keyData">
9683           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9684       </Docs>
9685       <AssemblyInfo>
9686         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9687       </AssemblyInfo>
9688     </Member>
9689     <Member MemberName="ProcessDialogKey">
9690       <MemberSignature Language="C#" Value="protected override bool ProcessDialogKey (System.Windows.Forms.Keys keyData);" />
9691       <MemberType>Method</MemberType>
9692       <ReturnValue>
9693         <ReturnType>System.Boolean</ReturnType>
9694       </ReturnValue>
9695       <Parameters>
9696         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9697       </Parameters>
9698       <Docs>
9699         <since version=".NET 2.0" />
9700         <remarks>
9701           <attribution license="cc4" from="Microsoft" modified="false" />
9702           <para>This method is called in edit mode to handle keyboard input that is not handled by the hosted editing control. </para>
9703           <para>If a key press is determined to not be an input key, it will be sent to the base class for processing.</para>
9704         </remarks>
9705         <summary>
9706           <attribution license="cc4" from="Microsoft" modified="false" />
9707           <para>Processes keys, such as the TAB, ESCAPE, ENTER, and ARROW keys, used to control dialog boxes.</para>
9708         </summary>
9709         <returns>
9710           <attribution license="cc4" from="Microsoft" modified="false" />
9711           <para>true if the key was processed; otherwise, false.</para>
9712         </returns>
9713         <param name="keyData">
9714           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9715       </Docs>
9716       <AssemblyInfo>
9717         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9718       </AssemblyInfo>
9719     </Member>
9720     <Member MemberName="ProcessDownKey">
9721       <MemberSignature Language="C#" Value="protected bool ProcessDownKey (System.Windows.Forms.Keys keyData);" />
9722       <MemberType>Method</MemberType>
9723       <ReturnValue>
9724         <ReturnType>System.Boolean</ReturnType>
9725       </ReturnValue>
9726       <Parameters>
9727         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9728       </Parameters>
9729       <Docs>
9730         <remarks>To be added.</remarks>
9731         <since version=".NET 2.0" />
9732         <summary>
9733           <attribution license="cc4" from="Microsoft" modified="false" />
9734           <para>Processes the DOWN ARROW key.</para>
9735         </summary>
9736         <returns>
9737           <attribution license="cc4" from="Microsoft" modified="false" />
9738           <para>true if the key was processed; otherwise, false.</para>
9739         </returns>
9740         <param name="keyData">
9741           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9742       </Docs>
9743       <AssemblyInfo>
9744         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9745       </AssemblyInfo>
9746     </Member>
9747     <Member MemberName="ProcessEndKey">
9748       <MemberSignature Language="C#" Value="protected bool ProcessEndKey (System.Windows.Forms.Keys keyData);" />
9749       <MemberType>Method</MemberType>
9750       <ReturnValue>
9751         <ReturnType>System.Boolean</ReturnType>
9752       </ReturnValue>
9753       <Parameters>
9754         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9755       </Parameters>
9756       <Docs>
9757         <remarks>To be added.</remarks>
9758         <since version=".NET 2.0" />
9759         <summary>
9760           <attribution license="cc4" from="Microsoft" modified="false" />
9761           <para>Processes the END key.</para>
9762         </summary>
9763         <returns>
9764           <attribution license="cc4" from="Microsoft" modified="false" />
9765           <para>true if the key was processed; otherwise, false.</para>
9766         </returns>
9767         <param name="keyData">
9768           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9769       </Docs>
9770       <AssemblyInfo>
9771         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9772       </AssemblyInfo>
9773     </Member>
9774     <Member MemberName="ProcessEnterKey">
9775       <MemberSignature Language="C#" Value="protected bool ProcessEnterKey (System.Windows.Forms.Keys keyData);" />
9776       <MemberType>Method</MemberType>
9777       <ReturnValue>
9778         <ReturnType>System.Boolean</ReturnType>
9779       </ReturnValue>
9780       <Parameters>
9781         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9782       </Parameters>
9783       <Docs>
9784         <remarks>To be added.</remarks>
9785         <since version=".NET 2.0" />
9786         <summary>
9787           <attribution license="cc4" from="Microsoft" modified="false" />
9788           <para>Processes the ENTER key.</para>
9789         </summary>
9790         <returns>
9791           <attribution license="cc4" from="Microsoft" modified="false" />
9792           <para>true if the key was processed; otherwise, false.</para>
9793         </returns>
9794         <param name="keyData">
9795           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9796       </Docs>
9797       <AssemblyInfo>
9798         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9799       </AssemblyInfo>
9800     </Member>
9801     <Member MemberName="ProcessEscapeKey">
9802       <MemberSignature Language="C#" Value="protected bool ProcessEscapeKey (System.Windows.Forms.Keys keyData);" />
9803       <MemberType>Method</MemberType>
9804       <ReturnValue>
9805         <ReturnType>System.Boolean</ReturnType>
9806       </ReturnValue>
9807       <Parameters>
9808         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9809       </Parameters>
9810       <Docs>
9811         <remarks>To be added.</remarks>
9812         <since version=".NET 2.0" />
9813         <summary>
9814           <attribution license="cc4" from="Microsoft" modified="false" />
9815           <para>Processes the ESC key.</para>
9816         </summary>
9817         <returns>
9818           <attribution license="cc4" from="Microsoft" modified="false" />
9819           <para>true if the key was processed; otherwise, false. </para>
9820         </returns>
9821         <param name="keyData">
9822           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9823       </Docs>
9824       <AssemblyInfo>
9825         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9826       </AssemblyInfo>
9827     </Member>
9828     <Member MemberName="ProcessF2Key">
9829       <MemberSignature Language="C#" Value="protected bool ProcessF2Key (System.Windows.Forms.Keys keyData);" />
9830       <MemberType>Method</MemberType>
9831       <ReturnValue>
9832         <ReturnType>System.Boolean</ReturnType>
9833       </ReturnValue>
9834       <Parameters>
9835         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9836       </Parameters>
9837       <Docs>
9838         <remarks>To be added.</remarks>
9839         <since version=".NET 2.0" />
9840         <summary>
9841           <attribution license="cc4" from="Microsoft" modified="false" />
9842           <para>Processes the F2 key.</para>
9843         </summary>
9844         <returns>
9845           <attribution license="cc4" from="Microsoft" modified="false" />
9846           <para>true if the key was processed; otherwise, false. </para>
9847         </returns>
9848         <param name="keyData">
9849           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9850       </Docs>
9851       <AssemblyInfo>
9852         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9853       </AssemblyInfo>
9854     </Member>
9855     <Member MemberName="ProcessHomeKey">
9856       <MemberSignature Language="C#" Value="protected bool ProcessHomeKey (System.Windows.Forms.Keys keyData);" />
9857       <MemberType>Method</MemberType>
9858       <ReturnValue>
9859         <ReturnType>System.Boolean</ReturnType>
9860       </ReturnValue>
9861       <Parameters>
9862         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9863       </Parameters>
9864       <Docs>
9865         <remarks>To be added.</remarks>
9866         <since version=".NET 2.0" />
9867         <summary>
9868           <attribution license="cc4" from="Microsoft" modified="false" />
9869           <para>Processes the HOME key.</para>
9870         </summary>
9871         <returns>
9872           <attribution license="cc4" from="Microsoft" modified="false" />
9873           <para>true if the key was processed; otherwise, false.</para>
9874         </returns>
9875         <param name="keyData">
9876           <attribution license="cc4" from="Microsoft" modified="false" />The key that was pressed.</param>
9877       </Docs>
9878       <AssemblyInfo>
9879         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9880       </AssemblyInfo>
9881     </Member>
9882     <Member MemberName="ProcessInsertKey">
9883       <MemberSignature Language="C#" Value="protected bool ProcessInsertKey (System.Windows.Forms.Keys keyData);" />
9884       <MemberType>Method</MemberType>
9885       <ReturnValue>
9886         <ReturnType>System.Boolean</ReturnType>
9887       </ReturnValue>
9888       <Parameters>
9889         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9890       </Parameters>
9891       <Docs>
9892         <remarks>To be added.</remarks>
9893         <since version=".NET 2.0" />
9894         <summary>
9895           <attribution license="cc4" from="Microsoft" modified="false" />
9896           <para>Processes the INSERT key.</para>
9897         </summary>
9898         <returns>
9899           <attribution license="cc4" from="Microsoft" modified="false" />
9900           <para>true if the key was processed; otherwise, false.</para>
9901         </returns>
9902         <param name="keyData">
9903           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
9904       </Docs>
9905       <AssemblyInfo>
9906         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9907       </AssemblyInfo>
9908     </Member>
9909     <Member MemberName="ProcessKeyEventArgs">
9910       <MemberSignature Language="C#" Value="protected override bool ProcessKeyEventArgs (ref System.Windows.Forms.Message m);" />
9911       <MemberType>Method</MemberType>
9912       <ReturnValue>
9913         <ReturnType>System.Boolean</ReturnType>
9914       </ReturnValue>
9915       <Parameters>
9916         <Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" />
9917       </Parameters>
9918       <Docs>
9919         <param name="m">To be added.</param>
9920         <summary>To be added.</summary>
9921         <returns>To be added.</returns>
9922         <remarks>To be added.</remarks>
9923         <since version=".NET 2.0" />
9924       </Docs>
9925       <AssemblyInfo>
9926         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9927       </AssemblyInfo>
9928     </Member>
9929     <Member MemberName="ProcessKeyPreview">
9930       <MemberSignature Language="C#" Value="protected override bool ProcessKeyPreview (ref System.Windows.Forms.Message m);" />
9931       <MemberType>Method</MemberType>
9932       <ReturnValue>
9933         <ReturnType>System.Boolean</ReturnType>
9934       </ReturnValue>
9935       <Parameters>
9936         <Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" />
9937       </Parameters>
9938       <Docs>
9939         <param name="m">To be added.</param>
9940         <summary>To be added.</summary>
9941         <returns>To be added.</returns>
9942         <remarks>To be added.</remarks>
9943         <since version=".NET 2.0" />
9944       </Docs>
9945       <AssemblyInfo>
9946         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9947       </AssemblyInfo>
9948     </Member>
9949     <Member MemberName="ProcessLeftKey">
9950       <MemberSignature Language="C#" Value="protected bool ProcessLeftKey (System.Windows.Forms.Keys keyData);" />
9951       <MemberType>Method</MemberType>
9952       <ReturnValue>
9953         <ReturnType>System.Boolean</ReturnType>
9954       </ReturnValue>
9955       <Parameters>
9956         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9957       </Parameters>
9958       <Docs>
9959         <remarks>To be added.</remarks>
9960         <since version=".NET 2.0" />
9961         <summary>
9962           <attribution license="cc4" from="Microsoft" modified="false" />
9963           <para>Processes the LEFT ARROW key.</para>
9964         </summary>
9965         <returns>
9966           <attribution license="cc4" from="Microsoft" modified="false" />
9967           <para>true if the key was processed; otherwise, false.</para>
9968         </returns>
9969         <param name="keyData">
9970           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9971       </Docs>
9972       <AssemblyInfo>
9973         <AssemblyVersion>2.0.0.0</AssemblyVersion>
9974       </AssemblyInfo>
9975     </Member>
9976     <Member MemberName="ProcessNextKey">
9977       <MemberSignature Language="C#" Value="protected bool ProcessNextKey (System.Windows.Forms.Keys keyData);" />
9978       <MemberType>Method</MemberType>
9979       <ReturnValue>
9980         <ReturnType>System.Boolean</ReturnType>
9981       </ReturnValue>
9982       <Parameters>
9983         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
9984       </Parameters>
9985       <Docs>
9986         <remarks>To be added.</remarks>
9987         <since version=".NET 2.0" />
9988         <summary>
9989           <attribution license="cc4" from="Microsoft" modified="false" />
9990           <para>Processes the PAGE DOWN key.</para>
9991         </summary>
9992         <returns>
9993           <attribution license="cc4" from="Microsoft" modified="false" />
9994           <para>true if the key was processed; otherwise, false.</para>
9995         </returns>
9996         <param name="keyData">
9997           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
9998       </Docs>
9999       <AssemblyInfo>
10000         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10001       </AssemblyInfo>
10002     </Member>
10003     <Member MemberName="ProcessPriorKey">
10004       <MemberSignature Language="C#" Value="protected bool ProcessPriorKey (System.Windows.Forms.Keys keyData);" />
10005       <MemberType>Method</MemberType>
10006       <ReturnValue>
10007         <ReturnType>System.Boolean</ReturnType>
10008       </ReturnValue>
10009       <Parameters>
10010         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
10011       </Parameters>
10012       <Docs>
10013         <remarks>To be added.</remarks>
10014         <since version=".NET 2.0" />
10015         <summary>
10016           <attribution license="cc4" from="Microsoft" modified="false" />
10017           <para>Processes the PAGE UP key.</para>
10018         </summary>
10019         <returns>
10020           <attribution license="cc4" from="Microsoft" modified="false" />
10021           <para>true if the key was processed; otherwise, false.</para>
10022         </returns>
10023         <param name="keyData">
10024           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
10025       </Docs>
10026       <AssemblyInfo>
10027         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10028       </AssemblyInfo>
10029     </Member>
10030     <Member MemberName="ProcessRightKey">
10031       <MemberSignature Language="C#" Value="protected bool ProcessRightKey (System.Windows.Forms.Keys keyData);" />
10032       <MemberType>Method</MemberType>
10033       <ReturnValue>
10034         <ReturnType>System.Boolean</ReturnType>
10035       </ReturnValue>
10036       <Parameters>
10037         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
10038       </Parameters>
10039       <Docs>
10040         <remarks>To be added.</remarks>
10041         <since version=".NET 2.0" />
10042         <summary>
10043           <attribution license="cc4" from="Microsoft" modified="false" />
10044           <para>Processes the RIGHT ARROW key.</para>
10045         </summary>
10046         <returns>
10047           <attribution license="cc4" from="Microsoft" modified="false" />
10048           <para>true if the key was processed; otherwise, false.</para>
10049         </returns>
10050         <param name="keyData">
10051           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
10052       </Docs>
10053       <AssemblyInfo>
10054         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10055       </AssemblyInfo>
10056     </Member>
10057     <Member MemberName="ProcessSpaceKey">
10058       <MemberSignature Language="C#" Value="protected bool ProcessSpaceKey (System.Windows.Forms.Keys keyData);" />
10059       <MemberType>Method</MemberType>
10060       <ReturnValue>
10061         <ReturnType>System.Boolean</ReturnType>
10062       </ReturnValue>
10063       <Parameters>
10064         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
10065       </Parameters>
10066       <Docs>
10067         <remarks>To be added.</remarks>
10068         <since version=".NET 2.0" />
10069         <summary>
10070           <attribution license="cc4" from="Microsoft" modified="false" />
10071           <para>Processes the SPACEBAR.</para>
10072         </summary>
10073         <returns>
10074           <attribution license="cc4" from="Microsoft" modified="false" />
10075           <para>true if the key was processed; otherwise, false.</para>
10076         </returns>
10077         <param name="keyData">
10078           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.Keys" /> values that represents the key to process.</param>
10079       </Docs>
10080       <AssemblyInfo>
10081         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10082       </AssemblyInfo>
10083     </Member>
10084     <Member MemberName="ProcessTabKey">
10085       <MemberSignature Language="C#" Value="protected bool ProcessTabKey (System.Windows.Forms.Keys keyData);" />
10086       <MemberType>Method</MemberType>
10087       <ReturnValue>
10088         <ReturnType>System.Boolean</ReturnType>
10089       </ReturnValue>
10090       <Parameters>
10091         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
10092       </Parameters>
10093       <Docs>
10094         <remarks>To be added.</remarks>
10095         <since version=".NET 2.0" />
10096         <summary>
10097           <attribution license="cc4" from="Microsoft" modified="false" />
10098           <para>Processes the TAB key.</para>
10099         </summary>
10100         <returns>
10101           <attribution license="cc4" from="Microsoft" modified="false" />
10102           <para>true if the key was processed; otherwise, false. </para>
10103         </returns>
10104         <param name="keyData">
10105           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
10106       </Docs>
10107       <AssemblyInfo>
10108         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10109       </AssemblyInfo>
10110     </Member>
10111     <Member MemberName="ProcessUpKey">
10112       <MemberSignature Language="C#" Value="protected bool ProcessUpKey (System.Windows.Forms.Keys keyData);" />
10113       <MemberType>Method</MemberType>
10114       <ReturnValue>
10115         <ReturnType>System.Boolean</ReturnType>
10116       </ReturnValue>
10117       <Parameters>
10118         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
10119       </Parameters>
10120       <Docs>
10121         <remarks>To be added.</remarks>
10122         <since version=".NET 2.0" />
10123         <summary>
10124           <attribution license="cc4" from="Microsoft" modified="false" />
10125           <para>Processes the UP ARROW key.</para>
10126         </summary>
10127         <returns>
10128           <attribution license="cc4" from="Microsoft" modified="false" />
10129           <para>true if the key was processed; otherwise, false.</para>
10130         </returns>
10131         <param name="keyData">
10132           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
10133       </Docs>
10134       <AssemblyInfo>
10135         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10136       </AssemblyInfo>
10137     </Member>
10138     <Member MemberName="ProcessZeroKey">
10139       <MemberSignature Language="C#" Value="protected bool ProcessZeroKey (System.Windows.Forms.Keys keyData);" />
10140       <MemberType>Method</MemberType>
10141       <ReturnValue>
10142         <ReturnType>System.Boolean</ReturnType>
10143       </ReturnValue>
10144       <Parameters>
10145         <Parameter Name="keyData" Type="System.Windows.Forms.Keys" />
10146       </Parameters>
10147       <Docs>
10148         <remarks>To be added.</remarks>
10149         <since version=".NET 2.0" />
10150         <summary>
10151           <attribution license="cc4" from="Microsoft" modified="false" />
10152           <para>Processes the 0 key.</para>
10153         </summary>
10154         <returns>
10155           <attribution license="cc4" from="Microsoft" modified="false" />
10156           <para>true if the key was processed; otherwise, false.</para>
10157         </returns>
10158         <param name="keyData">
10159           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of <see cref="T:System.Windows.Forms.Keys" /> values that represents the key or keys to process.</param>
10160       </Docs>
10161       <AssemblyInfo>
10162         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10163       </AssemblyInfo>
10164     </Member>
10165     <Member MemberName="ReadOnly">
10166       <MemberSignature Language="C#" Value="public bool ReadOnly { set; get; }" />
10167       <MemberType>Property</MemberType>
10168       <Attributes>
10169         <Attribute>
10170           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
10171         </Attribute>
10172         <Attribute>
10173           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
10174         </Attribute>
10175       </Attributes>
10176       <ReturnValue>
10177         <ReturnType>System.Boolean</ReturnType>
10178       </ReturnValue>
10179       <Docs>
10180         <value>To be added.</value>
10181         <since version=".NET 2.0" />
10182         <remarks>
10183           <attribution license="cc4" from="Microsoft" modified="false" />
10184           <para>A cell is read-only if the value of the <see cref="P:System.Windows.Forms.DataGridView.ReadOnly" /> property is true for the cell, the cell's row, the cell's column, or the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
10185         </remarks>
10186         <summary>
10187           <attribution license="cc4" from="Microsoft" modified="false" />
10188           <para>Gets or sets a value indicating whether the user can edit the cells of the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
10189         </summary>
10190       </Docs>
10191       <AssemblyInfo>
10192         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10193       </AssemblyInfo>
10194     </Member>
10195     <Member MemberName="ReadOnlyChanged">
10196       <MemberSignature Language="C#" Value="public event EventHandler ReadOnlyChanged;" />
10197       <MemberType>Event</MemberType>
10198       <ReturnValue>
10199         <ReturnType>System.EventHandler</ReturnType>
10200       </ReturnValue>
10201       <Docs>
10202         <since version=".NET 2.0" />
10203         <remarks>
10204           <attribution license="cc4" from="Microsoft" modified="false" />
10205           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
10206         </remarks>
10207         <summary>
10208           <attribution license="cc4" from="Microsoft" modified="false" />
10209           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.ReadOnly" /> property changes.</para>
10210         </summary>
10211       </Docs>
10212       <AssemblyInfo>
10213         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10214       </AssemblyInfo>
10215     </Member>
10216     <Member MemberName="RefreshEdit">
10217       <MemberSignature Language="C#" Value="public bool RefreshEdit ();" />
10218       <MemberType>Method</MemberType>
10219       <ReturnValue>
10220         <ReturnType>System.Boolean</ReturnType>
10221       </ReturnValue>
10222       <Parameters />
10223       <Docs>
10224         <since version=".NET 2.0" />
10225         <remarks>
10226           <attribution license="cc4" from="Microsoft" modified="false" />
10227           <para>Call this method to force a cell to update its display value in edit mode. This is useful when an external process modifies the cell value and you want to notify the user of the change, even when a user-specified change is lost as a result. </para>
10228         </remarks>
10229         <summary>
10230           <attribution license="cc4" from="Microsoft" modified="false" />
10231           <para>Refreshes the value of the current cell with the underlying cell value when the cell is in edit mode, discarding any previous value.</para>
10232         </summary>
10233         <returns>
10234           <attribution license="cc4" from="Microsoft" modified="false" />
10235           <para>true if successful; false if a <see cref="E:System.Windows.Forms.DataGridView.DataError" /> event occurred.</para>
10236         </returns>
10237       </Docs>
10238       <AssemblyInfo>
10239         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10240       </AssemblyInfo>
10241     </Member>
10242     <Member MemberName="ResetText">
10243       <MemberSignature Language="C#" Value="public override void ResetText ();" />
10244       <MemberType>Method</MemberType>
10245       <ReturnValue>
10246         <ReturnType>System.Void</ReturnType>
10247       </ReturnValue>
10248       <Parameters />
10249       <Docs>
10250         <since version=".NET 2.0" />
10251         <remarks>
10252           <attribution license="cc4" from="Microsoft" modified="false" />
10253           <para>Although this method behaves as described, the <see cref="P:System.Windows.Forms.DataGridView.Text" /> property is not relevant for this control.</para>
10254         </remarks>
10255         <summary>
10256           <attribution license="cc4" from="Microsoft" modified="false" />
10257           <para>Resets the <see cref="P:System.Windows.Forms.DataGridView.Text" /> property to its default value.</para>
10258         </summary>
10259       </Docs>
10260       <AssemblyInfo>
10261         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10262       </AssemblyInfo>
10263       <Attributes>
10264         <Attribute>
10265           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
10266         </Attribute>
10267       </Attributes>
10268     </Member>
10269     <Member MemberName="RowContextMenuStripChanged">
10270       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowContextMenuStripChanged;" />
10271       <MemberType>Event</MemberType>
10272       <ReturnValue>
10273         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
10274       </ReturnValue>
10275       <Docs>
10276         <since version=".NET 2.0" />
10277         <remarks>
10278           <attribution license="cc4" from="Microsoft" modified="false" />
10279           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10280         </remarks>
10281         <summary>
10282           <attribution license="cc4" from="Microsoft" modified="false" />
10283           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property changes.</para>
10284         </summary>
10285       </Docs>
10286       <AssemblyInfo>
10287         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10288       </AssemblyInfo>
10289     </Member>
10290     <Member MemberName="RowContextMenuStripNeeded">
10291       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler RowContextMenuStripNeeded;" />
10292       <MemberType>Event</MemberType>
10293       <Attributes>
10294         <Attribute>
10295           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
10296         </Attribute>
10297       </Attributes>
10298       <ReturnValue>
10299         <ReturnType>System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventHandler</ReturnType>
10300       </ReturnValue>
10301       <Docs>
10302         <since version=".NET 2.0" />
10303         <remarks>
10304           <attribution license="cc4" from="Microsoft" modified="false" />
10305           <para>The <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event occurs only when the <see cref="T:System.Windows.Forms.DataGridView" /> control <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is set or its <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true. Handling the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event is useful when you want to display a shortcut menu determined by a row's current state or the values it contains. </para>
10306           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event, the shortcut menu that you specify in the handler is shown whenever the user right-clicks a row unless the <see cref="E:System.Windows.Forms.DataGridView.CellContextMenuStripNeeded" /> overrides the shortcut menu for the specific cell that was clicked. </para>
10307           <para>The <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event also occurs whenever the value of the <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property is retrieved, either programmatically or when the user right-clicks a row. </para>
10308           <para>You can use the <see cref="P:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.RowIndex" /> property to determine the state of a row or the values it contains, and use this information to change or modify the <see cref="P:System.Windows.Forms.DataGridViewRowContextMenuStripNeededEventArgs.ContextMenuStrip" /> property. This property is initialized with the value of the row <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> property, which the event value overrides. </para>
10309           <para>Handle the <see cref="E:System.Windows.Forms.DataGridView.RowContextMenuStripNeeded" /> event when working with large amounts of data to avoid the performance penalties of setting the row <see cref="P:System.Windows.Forms.DataGridViewRow.ContextMenuStrip" /> value for multiple rows. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
10310           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10311         </remarks>
10312         <summary>
10313           <attribution license="cc4" from="Microsoft" modified="false" />
10314           <para>Occurs when a row's shortcut menu is needed.</para>
10315         </summary>
10316       </Docs>
10317       <AssemblyInfo>
10318         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10319       </AssemblyInfo>
10320     </Member>
10321     <Member MemberName="RowCount">
10322       <MemberSignature Language="C#" Value="public int RowCount { set; get; }" />
10323       <MemberType>Property</MemberType>
10324       <Attributes>
10325         <Attribute>
10326           <AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName>
10327         </Attribute>
10328         <Attribute>
10329           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
10330         </Attribute>
10331         <Attribute>
10332           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
10333         </Attribute>
10334         <Attribute>
10335           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
10336         </Attribute>
10337       </Attributes>
10338       <ReturnValue>
10339         <ReturnType>System.Int32</ReturnType>
10340       </ReturnValue>
10341       <Docs>
10342         <value>To be added.</value>
10343         <since version=".NET 2.0" />
10344         <remarks>
10345           <attribution license="cc4" from="Microsoft" modified="false" />
10346           <para>If <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> is set to a value less than the current value, rows will be removed from the end of the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection. If <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> is set to a value greater than the current value, rows will be added to the end of the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection. The additional rows are based on the row specified in the <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property.</para>
10347           <para>If you set the <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> property to 0, all rows will be removed from the <see cref="T:System.Windows.Forms.DataGridView" />. This is equivalent to calling the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.Clear" /> method. </para>
10348           <block subset="none" type="note">
10349             <para>If <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is true, you cannot set <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> to 0. In this case, call the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.Clear" /> method to remove all rows except the row for new records. Calling <see cref="M:System.Windows.Forms.DataGridViewRowCollection.Clear" /> has the same result as setting <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> to 1 in this case, but is much faster. </para>
10350           </block>
10351           <para>The <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> property can be used with the <see cref="P:System.Windows.Forms.DataGridView.ColumnCount" /> property to create a simple <see cref="T:System.Windows.Forms.DataGridView" /> for displaying and editing text. If you set the <see cref="P:System.Windows.Forms.DataGridView.RowCount" /> property to a value greater than 0 for a <see cref="T:System.Windows.Forms.DataGridView" /> control without columns, a <see cref="T:System.Windows.Forms.DataGridViewTextBoxColumn" /> is added automatically.</para>
10352         </remarks>
10353         <summary>
10354           <attribution license="cc4" from="Microsoft" modified="false" />
10355           <para>Gets or sets the number of rows displayed in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
10356         </summary>
10357       </Docs>
10358       <AssemblyInfo>
10359         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10360       </AssemblyInfo>
10361     </Member>
10362     <Member MemberName="RowDefaultCellStyleChanged">
10363       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowDefaultCellStyleChanged;" />
10364       <MemberType>Event</MemberType>
10365       <ReturnValue>
10366         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
10367       </ReturnValue>
10368       <Docs>
10369         <since version=".NET 2.0" />
10370         <remarks>
10371           <attribution license="cc4" from="Microsoft" modified="false" />
10372           <para>This event occurs when any property of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a row is set to a new value or when the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a row is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
10373           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10374         </remarks>
10375         <summary>
10376           <attribution license="cc4" from="Microsoft" modified="false" />
10377           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewBand.DefaultCellStyle" /> property for a row changes.</para>
10378         </summary>
10379       </Docs>
10380       <AssemblyInfo>
10381         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10382       </AssemblyInfo>
10383     </Member>
10384     <Member MemberName="RowDirtyStateNeeded">
10385       <MemberSignature Language="C#" Value="public event System.Windows.Forms.QuestionEventHandler RowDirtyStateNeeded;" />
10386       <MemberType>Event</MemberType>
10387       <Attributes>
10388         <Attribute>
10389           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
10390         </Attribute>
10391       </Attributes>
10392       <ReturnValue>
10393         <ReturnType>System.Windows.Forms.QuestionEventHandler</ReturnType>
10394       </ReturnValue>
10395       <Docs>
10396         <since version=".NET 2.0" />
10397         <remarks>
10398           <attribution license="cc4" from="Microsoft" modified="false" />
10399           <para>By default, this event sets the <see cref="P:System.Windows.Forms.QuestionEventArgs.Response" /> property to true if any cells in the current row have been modified. This causes the <see cref="E:System.Windows.Forms.DataGridView.CancelRowEdit" /> event to occur when the user reverts edits to a row. Users can revert edits to a row by pressing ESC twice when a cell is in edit mode or once outside of edit mode. This event can be used for customizing commit scope in virtual mode by setting the <see cref="P:System.Windows.Forms.QuestionEventArgs.Response" /> property to the correct value depending on the chosen commit scope.</para>
10400           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10401         </remarks>
10402         <summary>
10403           <attribution license="cc4" from="Microsoft" modified="false" />
10404           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is true and the <see cref="T:System.Windows.Forms.DataGridView" /> needs to determine whether the current row has uncommitted changes.</para>
10405         </summary>
10406       </Docs>
10407       <AssemblyInfo>
10408         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10409       </AssemblyInfo>
10410     </Member>
10411     <Member MemberName="RowDividerDoubleClick">
10412       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler RowDividerDoubleClick;" />
10413       <MemberType>Event</MemberType>
10414       <ReturnValue>
10415         <ReturnType>System.Windows.Forms.DataGridViewRowDividerDoubleClickEventHandler</ReturnType>
10416       </ReturnValue>
10417       <Docs>
10418         <since version=".NET 2.0" />
10419         <remarks>
10420           <attribution license="cc4" from="Microsoft" modified="false" />
10421           <para>You can use this event to customize the automatic sizing behavior that occurs when a user double-clicks a row divider. </para>
10422           <para>The row <see cref="P:System.Windows.Forms.DataGridViewColumn.DividerWidth" /> property does not extend the area in which a user can double-click. If the height of a divider has been increased through the use of this property, this event occurs when the user double-clicks the boundary between the divider and the adjacent column.</para>
10423           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10424         </remarks>
10425         <summary>
10426           <attribution license="cc4" from="Microsoft" modified="false" />
10427           <para>Occurs when the user double-clicks the divider between two rows.</para>
10428         </summary>
10429       </Docs>
10430       <AssemblyInfo>
10431         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10432       </AssemblyInfo>
10433     </Member>
10434     <Member MemberName="RowDividerHeightChanged">
10435       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowDividerHeightChanged;" />
10436       <MemberType>Event</MemberType>
10437       <ReturnValue>
10438         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
10439       </ReturnValue>
10440       <Docs>
10441         <since version=".NET 2.0" />
10442         <remarks>
10443           <attribution license="cc4" from="Microsoft" modified="false" />
10444           <para>The divider height is modified by setting the <see cref="P:System.Windows.Forms.DataGridViewRow.DividerHeight" /> property.</para>
10445           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10446         </remarks>
10447         <summary>
10448           <attribution license="cc4" from="Microsoft" modified="false" />
10449           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewRow.DividerHeight" /> property changes. </para>
10450         </summary>
10451       </Docs>
10452       <AssemblyInfo>
10453         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10454       </AssemblyInfo>
10455     </Member>
10456     <Member MemberName="RowEnter">
10457       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler RowEnter;" />
10458       <MemberType>Event</MemberType>
10459       <ReturnValue>
10460         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
10461       </ReturnValue>
10462       <Docs>
10463         <since version=".NET 2.0" />
10464         <remarks>
10465           <attribution license="cc4" from="Microsoft" modified="false" />
10466           <para>This event occurs when the <see cref="T:System.Windows.Forms.DataGridView" /> is initially loaded, as well as when the user selects a row other than the current row.</para>
10467           <para>This event occurs before the <see cref="P:System.Windows.Forms.DataGridView.CurrentRow" /> property is updated. To retrieve the index of the newly-entered row, use the <see cref="P:System.Windows.Forms.DataGridViewCellEventArgs.RowIndex" /> property within the event handler. </para>
10468           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10469         </remarks>
10470         <summary>
10471           <attribution license="cc4" from="Microsoft" modified="false" />
10472           <para>Occurs when a row receives input focus but before it becomes the current row.</para>
10473         </summary>
10474       </Docs>
10475       <AssemblyInfo>
10476         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10477       </AssemblyInfo>
10478     </Member>
10479     <Member MemberName="RowErrorTextChanged">
10480       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowErrorTextChanged;" />
10481       <MemberType>Event</MemberType>
10482       <ReturnValue>
10483         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
10484       </ReturnValue>
10485       <Docs>
10486         <since version=".NET 2.0" />
10487         <remarks>
10488           <attribution license="cc4" from="Microsoft" modified="false" />
10489           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10490         </remarks>
10491         <summary>
10492           <attribution license="cc4" from="Microsoft" modified="false" />
10493           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> property of a row changes.</para>
10494         </summary>
10495       </Docs>
10496       <AssemblyInfo>
10497         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10498       </AssemblyInfo>
10499     </Member>
10500     <Member MemberName="RowErrorTextNeeded">
10501       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler RowErrorTextNeeded;" />
10502       <MemberType>Event</MemberType>
10503       <Attributes>
10504         <Attribute>
10505           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
10506         </Attribute>
10507       </Attributes>
10508       <ReturnValue>
10509         <ReturnType>System.Windows.Forms.DataGridViewRowErrorTextNeededEventHandler</ReturnType>
10510       </ReturnValue>
10511       <Docs>
10512         <since version=".NET 2.0" />
10513         <remarks>
10514           <attribution license="cc4" from="Microsoft" modified="false" />
10515           <para>The <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event occurs only when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property of the <see cref="T:System.Windows.Forms.DataGridView" /> control is set or its <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true. Handling the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event is useful when you want to determine the error for a row depending on its state and the values it contains. </para>
10516           <para>When you handle the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event and specify error text in the handler, an error glyph appears in the row header unless the <see cref="P:System.Windows.Forms.DataGridView.ShowRowErrors" /> property is set to false. When the user moves the mouse pointer over the error glyph, the error text appears in a ToolTip.</para>
10517           <para>The <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event also occurs whenever the value of the <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> property is retrieved. </para>
10518           <para>You can use the <see cref="P:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.RowIndex" /> property to determine the state of a row or the values it contains, and use this information to change or modify the <see cref="P:System.Windows.Forms.DataGridViewRowErrorTextNeededEventArgs.ErrorText" /> property. This property is initialized with the value of the row <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> property, which the event value overrides. </para>
10519           <para>Handle the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event when working with large amounts of data to avoid the performance penalties of setting the row <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> value for multiple rows. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
10520           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10521         </remarks>
10522         <summary>
10523           <attribution license="cc4" from="Microsoft" modified="false" />
10524           <para>Occurs when a row's error text is needed.</para>
10525         </summary>
10526       </Docs>
10527       <AssemblyInfo>
10528         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10529       </AssemblyInfo>
10530     </Member>
10531     <Member MemberName="RowHeaderCellChanged">
10532       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowHeaderCellChanged;" />
10533       <MemberType>Event</MemberType>
10534       <ReturnValue>
10535         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
10536       </ReturnValue>
10537       <Docs>
10538         <since version=".NET 2.0" />
10539         <remarks>
10540           <attribution license="cc4" from="Microsoft" modified="false" />
10541           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10542         </remarks>
10543         <summary>
10544           <attribution license="cc4" from="Microsoft" modified="false" />
10545           <para>Occurs when the user changes the contents of a row header cell.</para>
10546         </summary>
10547       </Docs>
10548       <AssemblyInfo>
10549         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10550       </AssemblyInfo>
10551     </Member>
10552     <Member MemberName="RowHeaderMouseClick">
10553       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler RowHeaderMouseClick;" />
10554       <MemberType>Event</MemberType>
10555       <ReturnValue>
10556         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
10557       </ReturnValue>
10558       <Docs>
10559         <since version=".NET 2.0" />
10560         <remarks>
10561           <attribution license="cc4" from="Microsoft" modified="false" />
10562           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10563         </remarks>
10564         <summary>
10565           <attribution license="cc4" from="Microsoft" modified="false" />
10566           <para>Occurs when the user clicks within the boundaries of a row header.</para>
10567         </summary>
10568       </Docs>
10569       <AssemblyInfo>
10570         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10571       </AssemblyInfo>
10572     </Member>
10573     <Member MemberName="RowHeaderMouseDoubleClick">
10574       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellMouseEventHandler RowHeaderMouseDoubleClick;" />
10575       <MemberType>Event</MemberType>
10576       <ReturnValue>
10577         <ReturnType>System.Windows.Forms.DataGridViewCellMouseEventHandler</ReturnType>
10578       </ReturnValue>
10579       <Docs>
10580         <since version=".NET 2.0" />
10581         <remarks>
10582           <attribution license="cc4" from="Microsoft" modified="false" />
10583           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
10584         </remarks>
10585         <summary>
10586           <attribution license="cc4" from="Microsoft" modified="false" />
10587           <para>Occurs when a row header is double-clicked.</para>
10588         </summary>
10589       </Docs>
10590       <AssemblyInfo>
10591         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10592       </AssemblyInfo>
10593     </Member>
10594     <Member MemberName="RowHeadersBorderStyle">
10595       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewHeaderBorderStyle RowHeadersBorderStyle { set; get; }" />
10596       <MemberType>Property</MemberType>
10597       <Attributes>
10598         <Attribute>
10599           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewHeaderBorderStyle.Raised)</AttributeName>
10600         </Attribute>
10601         <Attribute>
10602           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
10603         </Attribute>
10604       </Attributes>
10605       <ReturnValue>
10606         <ReturnType>System.Windows.Forms.DataGridViewHeaderBorderStyle</ReturnType>
10607       </ReturnValue>
10608       <Docs>
10609         <value>To be added.</value>
10610         <since version=".NET 2.0" />
10611         <remarks>
10612           <attribution license="cc4" from="Microsoft" modified="false" />
10613           <para>If the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle" /> property is set to anything other than <see cref="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Single" />, the <see cref="P:System.Windows.Forms.DataGridView.GridColor" /> property must be a system color.</para>
10614           <para>You cannot set this property to the <see cref="F:System.Windows.Forms.DataGridViewHeaderBorderStyle.Custom" /> value, which is a read-only value indicating that the border style has been customized through the use of the <see cref="P:System.Windows.Forms.DataGridView.AdvancedRowHeadersBorderStyle" /> property.</para>
10615           <block subset="none" type="note">
10616             <para>If visual styles are enabled for the application through the <see cref="M:System.Windows.Forms.Application.EnableVisualStyles" /> method and the <see cref="P:System.Windows.Forms.DataGridView.EnableHeadersVisualStyles" /> property is true, the row headers are painted using the current theme. In this case, the value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle" /> property is ignored for all row headers except the <see cref="P:System.Windows.Forms.DataGridView.TopLeftHeaderCell" />, to which the theme is not applied. </para>
10617           </block>
10618         </remarks>
10619         <summary>
10620           <attribution license="cc4" from="Microsoft" modified="false" />
10621           <para>Gets or sets the border style of the row header cells.</para>
10622         </summary>
10623       </Docs>
10624       <AssemblyInfo>
10625         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10626       </AssemblyInfo>
10627     </Member>
10628     <Member MemberName="RowHeadersBorderStyleChanged">
10629       <MemberSignature Language="C#" Value="public event EventHandler RowHeadersBorderStyleChanged;" />
10630       <MemberType>Event</MemberType>
10631       <ReturnValue>
10632         <ReturnType>System.EventHandler</ReturnType>
10633       </ReturnValue>
10634       <Docs>
10635         <since version=".NET 2.0" />
10636         <remarks>
10637           <attribution license="cc4" from="Microsoft" modified="false" />
10638           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
10639         </remarks>
10640         <summary>
10641           <attribution license="cc4" from="Microsoft" modified="false" />
10642           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersBorderStyle" /> property changes.</para>
10643         </summary>
10644       </Docs>
10645       <AssemblyInfo>
10646         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10647       </AssemblyInfo>
10648     </Member>
10649     <Member MemberName="RowHeadersDefaultCellStyle">
10650       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCellStyle RowHeadersDefaultCellStyle { set; get; }" />
10651       <MemberType>Property</MemberType>
10652       <Attributes>
10653         <Attribute>
10654           <AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName>
10655         </Attribute>
10656       </Attributes>
10657       <ReturnValue>
10658         <ReturnType>System.Windows.Forms.DataGridViewCellStyle</ReturnType>
10659       </ReturnValue>
10660       <Docs>
10661         <value>To be added.</value>
10662         <since version=".NET 2.0" />
10663         <remarks>
10664           <attribution license="cc4" from="Microsoft" modified="false" />
10665           <para>The default <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by this property has the following initial property values.</para>
10666           <list type="table">
10667             <listheader>
10668               <item>
10669                 <term>
10670                   <para>DataGridViewCellStyle property</para>
10671                 </term>
10672                 <description>
10673                   <para>Default value</para>
10674                 </description>
10675               </item>
10676             </listheader>
10677             <item>
10678               <term>
10679                 <para>
10680                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.BackColor" /> </para>
10681               </term>
10682               <description>
10683                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.Control" /> property.</para>
10684               </description>
10685             </item>
10686             <item>
10687               <term>
10688                 <para>
10689                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.ForeColor" /> </para>
10690               </term>
10691               <description>
10692                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.WindowText" /> property.</para>
10693               </description>
10694             </item>
10695             <item>
10696               <term>
10697                 <para>
10698                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionBackColor" /> </para>
10699               </term>
10700               <description>
10701                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.Highlight" /> property.</para>
10702               </description>
10703             </item>
10704             <item>
10705               <term>
10706                 <para>
10707                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.SelectionForeColor" /> </para>
10708               </term>
10709               <description>
10710                 <para>The value of the <see cref="P:System.Drawing.SystemBrushes.HighlightText" /> property.</para>
10711               </description>
10712             </item>
10713             <item>
10714               <term>
10715                 <para>
10716                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Font" /> </para>
10717               </term>
10718               <description>
10719                 <para>The value of the <see cref="P:System.Windows.Forms.DataGridView.Font" /> property.</para>
10720               </description>
10721             </item>
10722             <item>
10723               <term>
10724                 <para>
10725                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.Alignment" /> </para>
10726               </term>
10727               <description>
10728                 <para>
10729                   <see cref="F:System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft" />
10730                 </para>
10731               </description>
10732             </item>
10733             <item>
10734               <term>
10735                 <para>
10736                   <see cref="P:System.Windows.Forms.DataGridViewCellStyle.WrapMode" /> </para>
10737               </term>
10738               <description>
10739                 <para>
10740                   <see cref="F:System.Windows.Forms.DataGridViewTriState.True" />
10741                 </para>
10742               </description>
10743             </item>
10744           </list>
10745           <para>These values automatically override the values set through the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> property. To force row headers to inherit the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> values, you must set the values in the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> object to the default values indicated for the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> class.</para>
10746           <para>For more information about cell style inheritance, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
10747         </remarks>
10748         <summary>
10749           <attribution license="cc4" from="Microsoft" modified="false" />
10750           <para>Gets or sets the default style applied to the row header cells.</para>
10751         </summary>
10752       </Docs>
10753       <AssemblyInfo>
10754         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10755       </AssemblyInfo>
10756     </Member>
10757     <Member MemberName="RowHeadersDefaultCellStyleChanged">
10758       <MemberSignature Language="C#" Value="public event EventHandler RowHeadersDefaultCellStyleChanged;" />
10759       <MemberType>Event</MemberType>
10760       <ReturnValue>
10761         <ReturnType>System.EventHandler</ReturnType>
10762       </ReturnValue>
10763       <Docs>
10764         <since version=".NET 2.0" />
10765         <remarks>
10766           <attribution license="cc4" from="Microsoft" modified="false" />
10767           <para>This event occurs when a property of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property is set to a new value or when the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
10768           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10769         </remarks>
10770         <summary>
10771           <attribution license="cc4" from="Microsoft" modified="false" />
10772           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersDefaultCellStyle" /> property changes.</para>
10773         </summary>
10774       </Docs>
10775       <AssemblyInfo>
10776         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10777       </AssemblyInfo>
10778     </Member>
10779     <Member MemberName="RowHeadersVisible">
10780       <MemberSignature Language="C#" Value="public bool RowHeadersVisible { set; get; }" />
10781       <MemberType>Property</MemberType>
10782       <Attributes>
10783         <Attribute>
10784           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
10785         </Attribute>
10786       </Attributes>
10787       <ReturnValue>
10788         <ReturnType>System.Boolean</ReturnType>
10789       </ReturnValue>
10790       <Docs>
10791         <value>To be added.</value>
10792         <since version=".NET 2.0" />
10793         <remarks>
10794           <attribution license="cc4" from="Microsoft" modified="false" />
10795           <para>If the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersVisible" /> property is false, a row whose <see cref="P:System.Windows.Forms.DataGridViewBand.Resizable" /> property is set to true can still be resized in the user interface (UI) by clicking the mouse cursor anywhere along the bottom border of the row to be resized.</para>
10796         </remarks>
10797         <summary>
10798           <attribution license="cc4" from="Microsoft" modified="false" />
10799           <para>Gets or sets a value indicating whether the column that contains row headers is displayed.</para>
10800         </summary>
10801       </Docs>
10802       <AssemblyInfo>
10803         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10804       </AssemblyInfo>
10805     </Member>
10806     <Member MemberName="RowHeadersWidth">
10807       <MemberSignature Language="C#" Value="public int RowHeadersWidth { set; get; }" />
10808       <MemberType>Property</MemberType>
10809       <Attributes>
10810         <Attribute>
10811           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
10812         </Attribute>
10813       </Attributes>
10814       <ReturnValue>
10815         <ReturnType>System.Int32</ReturnType>
10816       </ReturnValue>
10817       <Docs>
10818         <value>To be added.</value>
10819         <since version=".NET 2.0" />
10820         <remarks>
10821           <attribution license="cc4" from="Microsoft" modified="false" />
10822           <para>The <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidth" /> property can be used to resize the row header column to a specified width. To adjust the width of this column to fit the contents of the row header cells, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth" /> method. </para>
10823         </remarks>
10824         <summary>
10825           <attribution license="cc4" from="Microsoft" modified="false" />
10826           <para>Gets or sets the width, in pixels, of the column that contains the row headers.</para>
10827         </summary>
10828       </Docs>
10829       <AssemblyInfo>
10830         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10831       </AssemblyInfo>
10832     </Member>
10833     <Member MemberName="RowHeadersWidthChanged">
10834       <MemberSignature Language="C#" Value="public event EventHandler RowHeadersWidthChanged;" />
10835       <MemberType>Event</MemberType>
10836       <ReturnValue>
10837         <ReturnType>System.EventHandler</ReturnType>
10838       </ReturnValue>
10839       <Docs>
10840         <since version=".NET 2.0" />
10841         <remarks>
10842           <attribution license="cc4" from="Microsoft" modified="false" />
10843           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10844         </remarks>
10845         <summary>
10846           <attribution license="cc4" from="Microsoft" modified="false" />
10847           <para>Occurs when value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidth" /> property changes.</para>
10848         </summary>
10849       </Docs>
10850       <AssemblyInfo>
10851         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10852       </AssemblyInfo>
10853     </Member>
10854     <Member MemberName="RowHeadersWidthSizeMode">
10855       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode RowHeadersWidthSizeMode { set; get; }" />
10856       <MemberType>Property</MemberType>
10857       <Attributes>
10858         <Attribute>
10859           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.EnableResizing)</AttributeName>
10860         </Attribute>
10861         <Attribute>
10862           <AttributeName>System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.All)</AttributeName>
10863         </Attribute>
10864       </Attributes>
10865       <ReturnValue>
10866         <ReturnType>System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode</ReturnType>
10867       </ReturnValue>
10868       <Docs>
10869         <value>To be added.</value>
10870         <since version=".NET 2.0" />
10871         <remarks>
10872           <attribution license="cc4" from="Microsoft" modified="false" />
10873           <para>When this property is set to an automatic sizing mode, the width of the row headers cannot be adjusted by the user. </para>
10874           <para>To adjust the height of the row headers programmatically, use the <see cref="Overload:System.Windows.Forms.DataGridView.AutoResizeRowHeadersWidth" /> method or set the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidth" /> property. </para>
10875           <para>To set the sizing mode for the column headers, use the <see cref="P:System.Windows.Forms.DataGridView.ColumnHeadersHeightSizeMode" /> property.</para>
10876           <para>For more information about header sizing, see <format type="text/html"><a href="a5620a9c-0d06-41e3-8934-c25ddb16c9e6">Sizing Options in the Windows Forms DataGridView Control</a></format>.</para>
10877           <block subset="none" type="note">
10878             <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control does not support double buffering. If <see cref="P:System.Windows.Forms.Control.DoubleBuffered" /> is set to true in a derived <see cref="T:System.Windows.Forms.DataGridView" /> control, users will not receive visual feedback when resizing rows, columns, or headers or when reordering columns.</para>
10879           </block>
10880         </remarks>
10881         <summary>
10882           <attribution license="cc4" from="Microsoft" modified="false" />
10883           <para>Gets or sets a value indicating whether the width of the row headers is adjustable and whether it can be adjusted by the user or is automatically adjusted to fit the contents of the headers. </para>
10884         </summary>
10885       </Docs>
10886       <AssemblyInfo>
10887         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10888       </AssemblyInfo>
10889     </Member>
10890     <Member MemberName="RowHeadersWidthSizeModeChanged">
10891       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewAutoSizeModeEventHandler RowHeadersWidthSizeModeChanged;" />
10892       <MemberType>Event</MemberType>
10893       <ReturnValue>
10894         <ReturnType>System.Windows.Forms.DataGridViewAutoSizeModeEventHandler</ReturnType>
10895       </ReturnValue>
10896       <Docs>
10897         <since version=".NET 2.0" />
10898         <remarks>
10899           <attribution license="cc4" from="Microsoft" modified="false" />
10900           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10901         </remarks>
10902         <summary>
10903           <attribution license="cc4" from="Microsoft" modified="false" />
10904           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.RowHeadersWidthSizeMode" /> property changes.</para>
10905         </summary>
10906       </Docs>
10907       <AssemblyInfo>
10908         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10909       </AssemblyInfo>
10910     </Member>
10911     <Member MemberName="RowHeightChanged">
10912       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowHeightChanged;" />
10913       <MemberType>Event</MemberType>
10914       <ReturnValue>
10915         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
10916       </ReturnValue>
10917       <Docs>
10918         <since version=".NET 2.0" />
10919         <remarks>
10920           <attribution license="cc4" from="Microsoft" modified="false" />
10921           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10922         </remarks>
10923         <summary>
10924           <attribution license="cc4" from="Microsoft" modified="false" />
10925           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewRow.Height" /> property for a row changes.</para>
10926         </summary>
10927       </Docs>
10928       <AssemblyInfo>
10929         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10930       </AssemblyInfo>
10931     </Member>
10932     <Member MemberName="RowHeightInfoNeeded">
10933       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler RowHeightInfoNeeded;" />
10934       <MemberType>Event</MemberType>
10935       <Attributes>
10936         <Attribute>
10937           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
10938         </Attribute>
10939       </Attributes>
10940       <ReturnValue>
10941         <ReturnType>System.Windows.Forms.DataGridViewRowHeightInfoNeededEventHandler</ReturnType>
10942       </ReturnValue>
10943       <Docs>
10944         <since version=".NET 2.0" />
10945         <remarks>
10946           <attribution license="cc4" from="Microsoft" modified="false" />
10947           <para>This event is useful for preserving custom row heights after a sorting operation. This is necessary because sorting operations are normally handled by the data source, which does not keep track of the correspondence between rows of data and rows in the control. This event occurs only when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property has been set or when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true. In the latter case, you provide your own data store and sorting operations. Handle the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> event to store updated height information when the user changes a row height. Use <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> to retrieve the stored height information when the control needs it.</para>
10948           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10949         </remarks>
10950         <summary>
10951           <attribution license="cc4" from="Microsoft" modified="false" />
10952           <para>Occurs when information about row height is requested. </para>
10953         </summary>
10954       </Docs>
10955       <AssemblyInfo>
10956         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10957       </AssemblyInfo>
10958     </Member>
10959     <Member MemberName="RowHeightInfoPushed">
10960       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler RowHeightInfoPushed;" />
10961       <MemberType>Event</MemberType>
10962       <Attributes>
10963         <Attribute>
10964           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
10965         </Attribute>
10966       </Attributes>
10967       <ReturnValue>
10968         <ReturnType>System.Windows.Forms.DataGridViewRowHeightInfoPushedEventHandler</ReturnType>
10969       </ReturnValue>
10970       <Docs>
10971         <since version=".NET 2.0" />
10972         <remarks>
10973           <attribution license="cc4" from="Microsoft" modified="false" />
10974           <para>This event is raised when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is set to true or the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is set to a value other than null. This event is used to track and store row height information so that it can be restored after a sorting operation. To restore height information, handle the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> event. Note that this event occurs only when the user changes the height of a row. If you change the height of a row programmatically, you must store the new height information at the same time. </para>
10975           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
10976         </remarks>
10977         <summary>
10978           <attribution license="cc4" from="Microsoft" modified="false" />
10979           <para>Occurs when the user changes the height of a row.</para>
10980         </summary>
10981       </Docs>
10982       <AssemblyInfo>
10983         <AssemblyVersion>2.0.0.0</AssemblyVersion>
10984       </AssemblyInfo>
10985     </Member>
10986     <Member MemberName="RowLeave">
10987       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler RowLeave;" />
10988       <MemberType>Event</MemberType>
10989       <ReturnValue>
10990         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
10991       </ReturnValue>
10992       <Docs>
10993         <since version=".NET 2.0" />
10994         <remarks>
10995           <attribution license="cc4" from="Microsoft" modified="false" />
10996           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
10997         </remarks>
10998         <summary>
10999           <attribution license="cc4" from="Microsoft" modified="false" />
11000           <para>Occurs when a row loses input focus and is no longer the current row.</para>
11001         </summary>
11002       </Docs>
11003       <AssemblyInfo>
11004         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11005       </AssemblyInfo>
11006     </Member>
11007     <Member MemberName="RowMinimumHeightChanged">
11008       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowMinimumHeightChanged;" />
11009       <MemberType>Event</MemberType>
11010       <ReturnValue>
11011         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
11012       </ReturnValue>
11013       <Docs>
11014         <since version=".NET 2.0" />
11015         <remarks>
11016           <attribution license="cc4" from="Microsoft" modified="false" />
11017           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
11018         </remarks>
11019         <summary>
11020           <attribution license="cc4" from="Microsoft" modified="false" />
11021           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridViewRow.MinimumHeight" /> property for a row changes.</para>
11022         </summary>
11023       </Docs>
11024       <AssemblyInfo>
11025         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11026       </AssemblyInfo>
11027     </Member>
11028     <Member MemberName="RowPostPaint">
11029       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowPostPaintEventHandler RowPostPaint;" />
11030       <MemberType>Event</MemberType>
11031       <ReturnValue>
11032         <ReturnType>System.Windows.Forms.DataGridViewRowPostPaintEventHandler</ReturnType>
11033       </ReturnValue>
11034       <Docs>
11035         <since version=".NET 2.0" />
11036         <remarks>
11037           <attribution license="cc4" from="Microsoft" modified="false" />
11038           <para>You can handle this event alone or in combination with the <see cref="E:System.Windows.Forms.DataGridView.RowPrePaint" /> event to customize the appearance of rows in the control. You can paint entire rows yourself, or paint specific parts of rows and use the following methods of the <see cref="T:System.Windows.Forms.DataGridViewRowPostPaintEventArgs" /> class to paint other parts:</para>
11039           <list type="bullet">
11040             <item>
11041               <para>
11042                 <see cref="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.DrawFocus(System.Drawing.Rectangle,System.Boolean)" />
11043               </para>
11044             </item>
11045             <item>
11046               <para>
11047                 <see cref="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCells(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)" />
11048               </para>
11049             </item>
11050             <item>
11051               <para>
11052                 <see cref="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle,System.Boolean)" />
11053               </para>
11054             </item>
11055             <item>
11056               <para>
11057                 <see cref="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintCellsContent(System.Drawing.Rectangle)" />
11058               </para>
11059             </item>
11060             <item>
11061               <para>
11062                 <see cref="M:System.Windows.Forms.DataGridViewRowPostPaintEventArgs.PaintHeader(System.Boolean)" />
11063               </para>
11064             </item>
11065           </list>
11066           <para>You can also use the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> class to paint standard controls using the current theme. For more information, see <format type="text/html"><a href="a5b178ba-610e-46c4-a6c0-509c0886a744">Rendering Controls with Visual Styles</a></format>. If you are using vsprvslong, you also have access to a large library of standard images that you can use with the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
11067           <para>
11068             <dynamicLink>
11069               <keyword>vsimagelibrary</keyword>
11070             </dynamicLink>
11071           </para>
11072           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
11073         </remarks>
11074         <summary>
11075           <attribution license="cc4" from="Microsoft" modified="false" />
11076           <para>Occurs after a <see cref="T:System.Windows.Forms.DataGridViewRow" /> is painted.</para>
11077         </summary>
11078       </Docs>
11079       <AssemblyInfo>
11080         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11081       </AssemblyInfo>
11082     </Member>
11083     <Member MemberName="RowPrePaint">
11084       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowPrePaintEventHandler RowPrePaint;" />
11085       <MemberType>Event</MemberType>
11086       <ReturnValue>
11087         <ReturnType>System.Windows.Forms.DataGridViewRowPrePaintEventHandler</ReturnType>
11088       </ReturnValue>
11089       <Docs>
11090         <since version=".NET 2.0" />
11091         <remarks>
11092           <attribution license="cc4" from="Microsoft" modified="false" />
11093           <para>You can handle this event alone or in combination with the <see cref="E:System.Windows.Forms.DataGridView.RowPostPaint" /> event to customize the appearance of rows in the control. You can paint entire rows yourself, or paint specific parts of rows and use the following methods of the <see cref="T:System.Windows.Forms.DataGridViewRowPrePaintEventArgs" /> class to paint other parts:</para>
11094           <list type="bullet">
11095             <item>
11096               <para>
11097                 <see cref="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.DrawFocus(System.Drawing.Rectangle,System.Boolean)" />
11098               </para>
11099             </item>
11100             <item>
11101               <para>
11102                 <see cref="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCells(System.Drawing.Rectangle,System.Windows.Forms.DataGridViewPaintParts)" />
11103               </para>
11104             </item>
11105             <item>
11106               <para>
11107                 <see cref="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsBackground(System.Drawing.Rectangle,System.Boolean)" />
11108               </para>
11109             </item>
11110             <item>
11111               <para>
11112                 <see cref="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintCellsContent(System.Drawing.Rectangle)" />
11113               </para>
11114             </item>
11115             <item>
11116               <para>
11117                 <see cref="M:System.Windows.Forms.DataGridViewRowPrePaintEventArgs.PaintHeader(System.Boolean)" />
11118               </para>
11119             </item>
11120           </list>
11121           <para>You can also use the <see cref="T:System.Windows.Forms.VisualStyles.VisualStyleRenderer" /> class to paint standard controls using the current theme. For more information, see <format type="text/html"><a href="a5b178ba-610e-46c4-a6c0-509c0886a744">Rendering Controls with Visual Styles</a></format>. If you are using vsprvslong, you also have access to a large library of standard images that you can use with the <see cref="T:System.Windows.Forms.DataGridView" /> control. </para>
11122           <para>
11123             <dynamicLink>
11124               <keyword>vsimagelibrary</keyword>
11125             </dynamicLink>
11126           </para>
11127           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
11128         </remarks>
11129         <summary>
11130           <attribution license="cc4" from="Microsoft" modified="false" />
11131           <para>Occurs before a <see cref="T:System.Windows.Forms.DataGridViewRow" /> is painted</para>
11132         </summary>
11133       </Docs>
11134       <AssemblyInfo>
11135         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11136       </AssemblyInfo>
11137     </Member>
11138     <Member MemberName="Rows">
11139       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewRowCollection Rows { get; }" />
11140       <MemberType>Property</MemberType>
11141       <Attributes>
11142         <Attribute>
11143           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
11144         </Attribute>
11145       </Attributes>
11146       <ReturnValue>
11147         <ReturnType>System.Windows.Forms.DataGridViewRowCollection</ReturnType>
11148       </ReturnValue>
11149       <Docs>
11150         <value>To be added.</value>
11151         <since version=".NET 2.0" />
11152         <remarks>
11153           <attribution license="cc4" from="Microsoft" modified="false" />
11154           <para>You can use the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection to manually populate a <see cref="T:System.Windows.Forms.DataGridView" /> control instead of binding it to a data source. The following example shows you how to manually add and insert rows. This example assumes that you have added four <see cref="T:System.Windows.Forms.DataGridViewTextBoxColumn" /> instances to the control's <see cref="P:System.Windows.Forms.DataGridView.Columns" /> collection. </para>
11155           <para>[Visual Basic]</para>
11156           <code>Me.dataGridView1.Rows.Add("five", "six", "seven", "eight")
11157 Me.dataGridView1.Rows.Insert(0, "one", "two", "three", "four")</code>
11158           <para>[C#]</para>
11159           <code>this.dataGridView1.Rows.Add("five", "six", "seven", "eight");this.dataGridView1.Rows.Insert(0, "one", "two", "three", "four");</code>
11160           <para>For a detailed example that programmatically populates an unbound <see cref="T:System.Windows.Forms.DataGridView" /> control, see the Example section.</para>
11161           <para>Rows include style information in addition to cell values. For this reason, you might want to add or insert rows based on existing rows that you have already styled. You can do this using the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.AddCopy(System.Int32)" />, <see cref="M:System.Windows.Forms.DataGridViewRowCollection.AddCopies(System.Int32,System.Int32)" />, <see cref="M:System.Windows.Forms.DataGridViewRowCollection.InsertCopy(System.Int32,System.Int32)" />, and <see cref="M:System.Windows.Forms.DataGridViewRowCollection.InsertCopies(System.Int32,System.Int32,System.Int32)" /> methods. </para>
11162           <para>You can also use the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection to modify the values in the control or to remove rows. You can modify values or remove rows regardless of whether the control is bound to an external data source. If there is a data source, the changes are made directly to the data source. You may still need to push the data source updates to a remote database, however. For more information, see <format type="text/html"><a href="1660f69c-5711-45d2-abc1-e25bc6779124">How to: Bind Data to the Windows Forms DataGridView Control</a></format>. </para>
11163           <para>The following example shows you how to modify cell values programmatically.</para>
11164           <para>[Visual Basic]</para>
11165           <code>' Modify the value in the first cell of the second row.
11166 Me.dataGridView1.Rows[1].Cells[0].Value = "new value"
11167
11168 ' The previous line is equivalent to the following line.
11169 Me.dataGridView1[0, 1].Value = "new value"</code>
11170           <para>[C#]</para>
11171           <code>// Modify the value in the first cell of the second row.
11172 this.dataGridView1.Rows[1].Cells[0].Value = "new value";
11173
11174 // The previous line is equivalent to the following line.
11175 this.dataGridView1[0, 1].Value = "new value";</code>
11176           <para>In addition to the standard collection capabilities, you can use the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection to retrieve information about rows. Use the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetRowState(System.Int32)" /> method to determine the state of a particular row. Use the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetRowCount(System.Windows.Forms.DataGridViewElementStates)" /> and <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetRowsHeight(System.Windows.Forms.DataGridViewElementStates)" /> methods to determine the number of rows or the combined height of rows in a particular state. To retrieve the index of a row with a particular state, use the <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetFirstRow(System.Windows.Forms.DataGridViewElementStates)" />, <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetLastRow(System.Windows.Forms.DataGridViewElementStates)" />, <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetNextRow(System.Int32,System.Windows.Forms.DataGridViewElementStates)" />, and <see cref="M:System.Windows.Forms.DataGridViewRowCollection.GetPreviousRow(System.Int32,System.Windows.Forms.DataGridViewElementStates)" /> methods. </para>
11177           <para>The following example shows you how to retrieve the index of the first selected row, and then use it to programmatically delete the row. </para>
11178           <para>[Visual Basic]</para>
11179           <code>Dim rowToDelete As Int32 = Me.dataGridView1.Rows.GetFirstRow( _
11180     DataGridViewElementStates.Selected)
11181 If rowToDelete &gt; -1 Then
11182     Me.dataGridView1.Rows.RemoveAt(rowToDelete)
11183 End If</code>
11184           <para>[C#]</para>
11185           <code>Int32 rowToDelete = this.dataGridView1.Rows.GetFirstRow(
11186     DataGridViewElementStates.Selected);
11187 if (rowToDelete &gt; -1)
11188 {
11189     this.dataGridView1.Rows.RemoveAt(rowToDelete);
11190 }</code>
11191           <para>To improve performance, the <see cref="T:System.Windows.Forms.DataGridViewRowCollection" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> property can include shared and unshared rows. Shared rows share memory to reduce the cost of a large record set. If your record set is very large, you should be careful to keep the rows shared as much as possible when accessing the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> property. </para>
11192           <para>For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
11193         </remarks>
11194         <summary>
11195           <attribution license="cc4" from="Microsoft" modified="false" />
11196           <para>Gets a collection that contains all the rows in the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
11197         </summary>
11198       </Docs>
11199       <AssemblyInfo>
11200         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11201       </AssemblyInfo>
11202     </Member>
11203     <Member MemberName="RowsAdded">
11204       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowsAddedEventHandler RowsAdded;" />
11205       <MemberType>Event</MemberType>
11206       <ReturnValue>
11207         <ReturnType>System.Windows.Forms.DataGridViewRowsAddedEventHandler</ReturnType>
11208       </ReturnValue>
11209       <Docs>
11210         <since version=".NET 2.0" />
11211         <remarks>
11212           <attribution license="cc4" from="Microsoft" modified="false" />
11213           <para>Rows in the control are not automatically sorted when new rows are added. To sort new rows into their correct position, call the <see cref="Overload:System.Windows.Forms.DataGridView.Sort" /> method in a <see cref="E:System.Windows.Forms.DataGridView.RowsAdded" /> event handler.</para>
11214           <para>When the user adds a new row using the row for new records, the <see cref="P:System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowIndex" /> value in the handler for this event is equal to the index of the new location of the row for new records, which is one greater than the row just added. When you add rows programmatically, however, the <see cref="P:System.Windows.Forms.DataGridViewRowsAddedEventArgs.RowIndex" /> value is the index of the first row added. </para>
11215           <para>In virtual mode, this event occurs before the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event and can be used to create new records in your data store that you can then populate in the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event handler.</para>
11216           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
11217         </remarks>
11218         <summary>
11219           <attribution license="cc4" from="Microsoft" modified="false" />
11220           <para>Occurs after a new row is added to the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
11221         </summary>
11222       </Docs>
11223       <AssemblyInfo>
11224         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11225       </AssemblyInfo>
11226     </Member>
11227     <Member MemberName="RowsDefaultCellStyle">
11228       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewCellStyle RowsDefaultCellStyle { set; get; }" />
11229       <MemberType>Property</MemberType>
11230       <ReturnValue>
11231         <ReturnType>System.Windows.Forms.DataGridViewCellStyle</ReturnType>
11232       </ReturnValue>
11233       <Docs>
11234         <value>To be added.</value>
11235         <since version=".NET 2.0" />
11236         <remarks>
11237           <attribution license="cc4" from="Microsoft" modified="false" />
11238           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control displays its cells using the styles indicated by the cell <see cref="P:System.Windows.Forms.DataGridViewCell.InheritedStyle" /> property, which inherits styles from other properties of type <see cref="T:System.Windows.Forms.DataGridViewCellStyle" />. For cells in all rows, excluding header cells, the styles specified through the <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" /> property override the styles specified through the <see cref="P:System.Windows.Forms.DataGridView.DefaultCellStyle" /> and <see cref="P:System.Windows.Forms.DataGridViewColumn.DefaultCellStyle" /> properties, and are overridden by the styles specified through the <see cref="P:System.Windows.Forms.DataGridView.AlternatingRowsDefaultCellStyle" />, <see cref="P:System.Windows.Forms.DataGridViewRow.DefaultCellStyle" />, and <see cref="P:System.Windows.Forms.DataGridViewCell.Style" /> properties. </para>
11239           <para>For more information, see <format type="text/html"><a href="dbb75ed6-8804-4232-8382-f9920c2e380c">Cell Styles in the Windows Forms DataGridView Control</a></format>.</para>
11240           <para>When getting this property, a <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with default values will be created if the property has not already been accessed. This can cause a performance impact when getting this property for many rows. Whenever possible, use a single <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> to set this property for multiple rows. For more information, see <format type="text/html"><a href="8321a8a6-6340-4fd1-b475-fa090b905aaf">Best Practices for Scaling the Windows Forms DataGridView Control</a></format>.</para>
11241         </remarks>
11242         <summary>
11243           <attribution license="cc4" from="Microsoft" modified="false" />
11244           <para>Gets or sets the default style applied to the row cells of the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
11245         </summary>
11246       </Docs>
11247       <AssemblyInfo>
11248         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11249       </AssemblyInfo>
11250     </Member>
11251     <Member MemberName="RowsDefaultCellStyleChanged">
11252       <MemberSignature Language="C#" Value="public event EventHandler RowsDefaultCellStyleChanged;" />
11253       <MemberType>Event</MemberType>
11254       <ReturnValue>
11255         <ReturnType>System.EventHandler</ReturnType>
11256       </ReturnValue>
11257       <Docs>
11258         <since version=".NET 2.0" />
11259         <remarks>
11260           <attribution license="cc4" from="Microsoft" modified="false" />
11261           <para>This event occurs when a property of the <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> returned by the <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" /> property is set to a new value or when the <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" /> property is set to a new <see cref="T:System.Windows.Forms.DataGridViewCellStyle" /> with at least one property value different than the previous cell style object.</para>
11262           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
11263         </remarks>
11264         <summary>
11265           <attribution license="cc4" from="Microsoft" modified="false" />
11266           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.RowsDefaultCellStyle" /> property changes.</para>
11267         </summary>
11268       </Docs>
11269       <AssemblyInfo>
11270         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11271       </AssemblyInfo>
11272     </Member>
11273     <Member MemberName="RowsRemoved">
11274       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowsRemovedEventHandler RowsRemoved;" />
11275       <MemberType>Event</MemberType>
11276       <ReturnValue>
11277         <ReturnType>System.Windows.Forms.DataGridViewRowsRemovedEventHandler</ReturnType>
11278       </ReturnValue>
11279       <Docs>
11280         <since version=".NET 2.0" />
11281         <remarks>
11282           <attribution license="cc4" from="Microsoft" modified="false" />
11283           <para>When rows are deleted from a <see cref="T:System.Windows.Forms.DataGridView" /> control, the index numbers of subsequent rows are lowered to compensate.</para>
11284           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
11285         </remarks>
11286         <summary>
11287           <attribution license="cc4" from="Microsoft" modified="false" />
11288           <para>Occurs when a row or rows are deleted from the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
11289         </summary>
11290       </Docs>
11291       <AssemblyInfo>
11292         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11293       </AssemblyInfo>
11294     </Member>
11295     <Member MemberName="RowStateChanged">
11296       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowStateChangedEventHandler RowStateChanged;" />
11297       <MemberType>Event</MemberType>
11298       <ReturnValue>
11299         <ReturnType>System.Windows.Forms.DataGridViewRowStateChangedEventHandler</ReturnType>
11300       </ReturnValue>
11301       <Docs>
11302         <since version=".NET 2.0" />
11303         <remarks>
11304           <attribution license="cc4" from="Microsoft" modified="false" />
11305           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
11306         </remarks>
11307         <summary>
11308           <attribution license="cc4" from="Microsoft" modified="false" />
11309           <para>Occurs when a row changes state, such as losing or gaining input focus.</para>
11310         </summary>
11311       </Docs>
11312       <AssemblyInfo>
11313         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11314       </AssemblyInfo>
11315     </Member>
11316     <Member MemberName="RowTemplate">
11317       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewRow RowTemplate { set; get; }" />
11318       <MemberType>Property</MemberType>
11319       <Attributes>
11320         <Attribute>
11321           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
11322         </Attribute>
11323         <Attribute>
11324           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
11325         </Attribute>
11326       </Attributes>
11327       <ReturnValue>
11328         <ReturnType>System.Windows.Forms.DataGridViewRow</ReturnType>
11329       </ReturnValue>
11330       <Docs>
11331         <value>To be added.</value>
11332         <since version=".NET 2.0" />
11333         <remarks>
11334           <attribution license="cc4" from="Microsoft" modified="false" />
11335           <para>Sometimes you want greater control over the appearance of <see cref="T:System.Windows.Forms.DataGridView" /> rows than what is provided by the various <see cref="T:System.Windows.Forms.DataGridView" /> cell style properties. The <see cref="P:System.Windows.Forms.DataGridView.RowTemplate" /> property lets you create and initialize a <see cref="T:System.Windows.Forms.DataGridViewRow" /> for use as a template by all rows, including the row for new records if <see cref="P:System.Windows.Forms.DataGridView.AllowUserToAddRows" /> is true. </para>
11336           <para>This is useful when you are setting default values for properties such as row height. For example, you may want to increase the default row height in order to provide extra room beneath ordinary cell content for displaying content that spans multiple columns. </para>
11337           <para>Setting the row template is necessary when external data is displayed using custom types derived from the <see cref="T:System.Windows.Forms.DataGridViewRow" /> class. With unbound <see cref="T:System.Windows.Forms.DataGridView" /> controls, you can programmatically populate the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection with instances of your custom row type. When displaying external data, however, the rows are generated automatically, but they are based on the row template, which you can set to an instance of your custom row type.</para>
11338           <para>If this property has not been set the first time you retrieve its value, a new <see cref="T:System.Windows.Forms.DataGridViewRow" /> is created and returned.</para>
11339         </remarks>
11340         <summary>
11341           <attribution license="cc4" from="Microsoft" modified="false" />
11342           <para>Gets or sets the row that represents the template for all the rows in the control.</para>
11343         </summary>
11344       </Docs>
11345       <AssemblyInfo>
11346         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11347       </AssemblyInfo>
11348     </Member>
11349     <Member MemberName="RowUnshared">
11350       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler RowUnshared;" />
11351       <MemberType>Event</MemberType>
11352       <Attributes>
11353         <Attribute>
11354           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
11355         </Attribute>
11356       </Attributes>
11357       <ReturnValue>
11358         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
11359       </ReturnValue>
11360       <Docs>
11361         <since version=".NET 2.0" />
11362         <remarks>
11363           <attribution license="cc4" from="Microsoft" modified="false" />
11364           <para>You can use this event during development and testing to help identify code that causes rows to change from a shared to an unshared state. This is useful when scaling the control to display large amounts of data. </para>
11365           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
11366         </remarks>
11367         <summary>
11368           <attribution license="cc4" from="Microsoft" modified="false" />
11369           <para>Occurs when a row's state changes from shared to unshared.</para>
11370         </summary>
11371       </Docs>
11372       <AssemblyInfo>
11373         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11374       </AssemblyInfo>
11375     </Member>
11376     <Member MemberName="RowValidated">
11377       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellEventHandler RowValidated;" />
11378       <MemberType>Event</MemberType>
11379       <ReturnValue>
11380         <ReturnType>System.Windows.Forms.DataGridViewCellEventHandler</ReturnType>
11381       </ReturnValue>
11382       <Docs>
11383         <since version=".NET 2.0" />
11384         <remarks>
11385           <attribution license="cc4" from="Microsoft" modified="false" />
11386           <para>This event is analogous to the <see cref="E:System.Windows.Forms.Control.Validated" /> event. Use this event to perform post-processing on a row of values.</para>
11387           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
11388         </remarks>
11389         <summary>
11390           <attribution license="cc4" from="Microsoft" modified="false" />
11391           <para>Occurs after a row has finished validating.</para>
11392         </summary>
11393       </Docs>
11394       <AssemblyInfo>
11395         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11396       </AssemblyInfo>
11397     </Member>
11398     <Member MemberName="RowValidating">
11399       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewCellCancelEventHandler RowValidating;" />
11400       <MemberType>Event</MemberType>
11401       <ReturnValue>
11402         <ReturnType>System.Windows.Forms.DataGridViewCellCancelEventHandler</ReturnType>
11403       </ReturnValue>
11404       <Docs>
11405         <since version=".NET 2.0" />
11406         <remarks>
11407           <attribution license="cc4" from="Microsoft" modified="false" />
11408           <para>This event is analogous to the <see cref="E:System.Windows.Forms.Control.Validating" /> event. Use this event to perform validation on all the values of a row. If the row does not pass validation, set the <see cref="P:System.ComponentModel.CancelEventArgs.Cancel" /> property to true. Canceling this event prevents the <see cref="E:System.Windows.Forms.DataGridView.RowValidated" />, <see cref="E:System.Windows.Forms.Control.Validating" />, and <see cref="E:System.Windows.Forms.Control.Validated" /> events from occurring, and also prevents the user from leaving the invalid row and prevents the row from being saved to an external data source in data bound mode. </para>
11409           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
11410         </remarks>
11411         <summary>
11412           <attribution license="cc4" from="Microsoft" modified="false" />
11413           <para>Occurs when a row is validating.</para>
11414         </summary>
11415       </Docs>
11416       <AssemblyInfo>
11417         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11418       </AssemblyInfo>
11419     </Member>
11420     <Member MemberName="Scroll">
11421       <MemberSignature Language="C#" Value="public event System.Windows.Forms.ScrollEventHandler Scroll;" />
11422       <MemberType>Event</MemberType>
11423       <ReturnValue>
11424         <ReturnType>System.Windows.Forms.ScrollEventHandler</ReturnType>
11425       </ReturnValue>
11426       <Docs>
11427         <since version=".NET 2.0" />
11428         <remarks>
11429           <attribution license="cc4" from="Microsoft" modified="false" />
11430           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
11431         </remarks>
11432         <summary>
11433           <attribution license="cc4" from="Microsoft" modified="false" />
11434           <para>Occurs when the user scrolls through the control contents.</para>
11435         </summary>
11436       </Docs>
11437       <AssemblyInfo>
11438         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11439       </AssemblyInfo>
11440     </Member>
11441     <Member MemberName="ScrollBars">
11442       <MemberSignature Language="C#" Value="public System.Windows.Forms.ScrollBars ScrollBars { set; get; }" />
11443       <MemberType>Property</MemberType>
11444       <Attributes>
11445         <Attribute>
11446           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
11447         </Attribute>
11448         <Attribute>
11449           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.ScrollBars.Both)</AttributeName>
11450         </Attribute>
11451       </Attributes>
11452       <ReturnValue>
11453         <ReturnType>System.Windows.Forms.ScrollBars</ReturnType>
11454       </ReturnValue>
11455       <Docs>
11456         <value>To be added.</value>
11457         <since version=".NET 2.0" />
11458         <remarks>
11459           <attribution license="cc4" from="Microsoft" modified="false" />
11460           <para>Regardless of the value of this property, scroll bars are shown only when they are needed. Use this property to prevent scroll bars from appearing. This is useful, for example, when you want to provide an alternative user interface (UI) for scrolling. </para>
11461         </remarks>
11462         <summary>
11463           <attribution license="cc4" from="Microsoft" modified="false" />
11464           <para>Gets or sets the type of scroll bars to display for the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
11465         </summary>
11466       </Docs>
11467       <AssemblyInfo>
11468         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11469       </AssemblyInfo>
11470     </Member>
11471     <Member MemberName="SelectAll">
11472       <MemberSignature Language="C#" Value="public void SelectAll ();" />
11473       <MemberType>Method</MemberType>
11474       <ReturnValue>
11475         <ReturnType>System.Void</ReturnType>
11476       </ReturnValue>
11477       <Parameters />
11478       <Docs>
11479         <since version=".NET 2.0" />
11480         <remarks>
11481           <attribution license="cc4" from="Microsoft" modified="false" />
11482           <para>When the <see cref="T:System.Windows.Forms.DataGridView" /> is in column-selection mode and this method is called, each column's <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" /> property is set to true, and each row's <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" /> property is set to false.</para>
11483           <para>Conversely, when the <see cref="T:System.Windows.Forms.DataGridView" /> is in row-selection mode and this method is called, each row's <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" /> property is set to true, and each column's <see cref="P:System.Windows.Forms.DataGridViewBand.Selected" /> property is set to false.</para>
11484         </remarks>
11485         <summary>
11486           <attribution license="cc4" from="Microsoft" modified="false" />
11487           <para>Selects all the cells in the <see cref="T:System.Windows.Forms.DataGridView" />.</para>
11488         </summary>
11489       </Docs>
11490       <AssemblyInfo>
11491         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11492       </AssemblyInfo>
11493     </Member>
11494     <Member MemberName="SelectedCells">
11495       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewSelectedCellCollection SelectedCells { get; }" />
11496       <MemberType>Property</MemberType>
11497       <Attributes>
11498         <Attribute>
11499           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
11500         </Attribute>
11501       </Attributes>
11502       <ReturnValue>
11503         <ReturnType>System.Windows.Forms.DataGridViewSelectedCellCollection</ReturnType>
11504       </ReturnValue>
11505       <Docs>
11506         <value>To be added.</value>
11507         <since version=".NET 2.0" />
11508         <remarks>
11509           <attribution license="cc4" from="Microsoft" modified="false" />
11510           <para>The <see cref="P:System.Windows.Forms.DataGridView.SelectedCells" /> property is always populated regardless of the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value.</para>
11511           <para>This property contains a read-only snapshot of the selection at the time it is referenced. If you hold onto a copy of this collection, it may differ from the actual, subsequent <see cref="T:System.Windows.Forms.DataGridView" /> state in which the user may have changed the selection. Therefore, you should not operate on a copy of the collection. </para>
11512         </remarks>
11513         <summary>
11514           <attribution license="cc4" from="Microsoft" modified="false" />
11515           <para>Gets the collection of cells selected by the user.</para>
11516         </summary>
11517       </Docs>
11518       <AssemblyInfo>
11519         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11520       </AssemblyInfo>
11521     </Member>
11522     <Member MemberName="SelectedColumns">
11523       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewSelectedColumnCollection SelectedColumns { get; }" />
11524       <MemberType>Property</MemberType>
11525       <Attributes>
11526         <Attribute>
11527           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
11528         </Attribute>
11529       </Attributes>
11530       <ReturnValue>
11531         <ReturnType>System.Windows.Forms.DataGridViewSelectedColumnCollection</ReturnType>
11532       </ReturnValue>
11533       <Docs>
11534         <value>To be added.</value>
11535         <since version=".NET 2.0" />
11536         <remarks>
11537           <attribution license="cc4" from="Microsoft" modified="false" />
11538           <para>The <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property must be set to <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullColumnSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.ColumnHeaderSelect" /> for the <see cref="P:System.Windows.Forms.DataGridView.SelectedColumns" /> property to be populated with selected columns.</para>
11539           <para>This property contains a read-only snapshot of the selection at the time it is referenced. If you hold onto a copy of this collection, it may differ from the actual, subsequent <see cref="T:System.Windows.Forms.DataGridView" /> state in which the user may have changed the selection. Therefore, you should not operate on a copy of the collection. </para>
11540         </remarks>
11541         <summary>
11542           <attribution license="cc4" from="Microsoft" modified="false" />
11543           <para>Gets the collection of columns selected by the user.</para>
11544         </summary>
11545       </Docs>
11546       <AssemblyInfo>
11547         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11548       </AssemblyInfo>
11549     </Member>
11550     <Member MemberName="SelectedRows">
11551       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewSelectedRowCollection SelectedRows { get; }" />
11552       <MemberType>Property</MemberType>
11553       <Attributes>
11554         <Attribute>
11555           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
11556         </Attribute>
11557       </Attributes>
11558       <ReturnValue>
11559         <ReturnType>System.Windows.Forms.DataGridViewSelectedRowCollection</ReturnType>
11560       </ReturnValue>
11561       <Docs>
11562         <value>To be added.</value>
11563         <since version=".NET 2.0" />
11564         <remarks>
11565           <attribution license="cc4" from="Microsoft" modified="false" />
11566           <para>The <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property must be set to <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect" /> or <see cref="F:System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect" /> for the <see cref="P:System.Windows.Forms.DataGridView.SelectedRows" /> property to be populated with selected rows.</para>
11567           <para>This property contains a read-only snapshot of the selection at the time it is referenced. If you hold onto a copy of this collection, it may differ from the actual, subsequent <see cref="T:System.Windows.Forms.DataGridView" /> state in which the user may have changed the selection. You should therefore not operate on a copy of the collection. </para>
11568           <para>To programmatically select a row, set its <see cref="P:System.Windows.Forms.DataGridViewRow.Selected" /> property to true. </para>
11569         </remarks>
11570         <summary>
11571           <attribution license="cc4" from="Microsoft" modified="false" />
11572           <para>Gets the collection of rows selected by the user.</para>
11573         </summary>
11574       </Docs>
11575       <AssemblyInfo>
11576         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11577       </AssemblyInfo>
11578     </Member>
11579     <Member MemberName="SelectionChanged">
11580       <MemberSignature Language="C#" Value="public event EventHandler SelectionChanged;" />
11581       <MemberType>Event</MemberType>
11582       <ReturnValue>
11583         <ReturnType>System.EventHandler</ReturnType>
11584       </ReturnValue>
11585       <Docs>
11586         <since version=".NET 2.0" />
11587         <remarks>
11588           <attribution license="cc4" from="Microsoft" modified="false" />
11589           <para>This event occurs whenever cells are selected or the selection is canceled, whether programmatically or by user action. For example, this event is useful when you want display the sum of the currently selected cells. </para>
11590           <para>When you change the value of the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property, the <see cref="E:System.Windows.Forms.DataGridView.SelectionChanged" /> event occurs before the <see cref="E:System.Windows.Forms.DataGridView.CurrentCellChanged" /> event. Any <see cref="E:System.Windows.Forms.DataGridView.SelectionChanged" /> event handler accessing the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property at this time will get its previous value. </para>
11591           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
11592         </remarks>
11593         <summary>
11594           <attribution license="cc4" from="Microsoft" modified="false" />
11595           <para>Occurs when the current selection changes.</para>
11596         </summary>
11597       </Docs>
11598       <AssemblyInfo>
11599         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11600       </AssemblyInfo>
11601     </Member>
11602     <Member MemberName="SelectionMode">
11603       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewSelectionMode SelectionMode { set; get; }" />
11604       <MemberType>Property</MemberType>
11605       <Attributes>
11606         <Attribute>
11607           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridViewSelectionMode.RowHeaderSelect)</AttributeName>
11608         </Attribute>
11609         <Attribute>
11610           <AttributeName>System.ComponentModel.Browsable(true)</AttributeName>
11611         </Attribute>
11612       </Attributes>
11613       <ReturnValue>
11614         <ReturnType>System.Windows.Forms.DataGridViewSelectionMode</ReturnType>
11615       </ReturnValue>
11616       <Docs>
11617         <value>To be added.</value>
11618         <since version=".NET 2.0" />
11619         <remarks>
11620           <attribution license="cc4" from="Microsoft" modified="false" />
11621           <para>Changing the value of the <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property clears the current selection.</para>
11622         </remarks>
11623         <summary>
11624           <attribution license="cc4" from="Microsoft" modified="false" />
11625           <para>Gets or sets a value indicating how the cells of the <see cref="T:System.Windows.Forms.DataGridView" /> can be selected.</para>
11626         </summary>
11627       </Docs>
11628       <AssemblyInfo>
11629         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11630       </AssemblyInfo>
11631     </Member>
11632     <Member MemberName="SetBoundsCore">
11633       <MemberSignature Language="C#" Value="protected override void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);" />
11634       <MemberType>Method</MemberType>
11635       <ReturnValue>
11636         <ReturnType>System.Void</ReturnType>
11637       </ReturnValue>
11638       <Parameters>
11639         <Parameter Name="x" Type="System.Int32" />
11640         <Parameter Name="y" Type="System.Int32" />
11641         <Parameter Name="width" Type="System.Int32" />
11642         <Parameter Name="height" Type="System.Int32" />
11643         <Parameter Name="specified" Type="System.Windows.Forms.BoundsSpecified" />
11644       </Parameters>
11645       <Docs>
11646         <remarks>To be added.</remarks>
11647         <since version=".NET 2.0" />
11648         <summary>
11649           <attribution license="cc4" from="Microsoft" modified="false" />
11650           <para>This member overrides <see cref="M:System.Windows.Forms.Control.SetBoundsCore(System.Int32,System.Int32,System.Int32,System.Int32,System.Windows.Forms.BoundsSpecified)" />.</para>
11651         </summary>
11652         <param name="x">
11653           <attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Left" /> property value of the control. </param>
11654         <param name="y">
11655           <attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Top" /> property value of the control. </param>
11656         <param name="width">
11657           <attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Width" /> property value of the control. </param>
11658         <param name="height">
11659           <attribution license="cc4" from="Microsoft" modified="false" />The new <see cref="P:System.Windows.Forms.Control.Height" /> property value of the control. </param>
11660         <param name="specified">
11661           <attribution license="cc4" from="Microsoft" modified="false" />A bitwise combination of the <see cref="T:System.Windows.Forms.BoundsSpecified" /> values. </param>
11662       </Docs>
11663       <AssemblyInfo>
11664         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11665       </AssemblyInfo>
11666     </Member>
11667     <Member MemberName="SetCurrentCellAddressCore">
11668       <MemberSignature Language="C#" Value="protected virtual bool SetCurrentCellAddressCore (int columnIndex, int rowIndex, bool setAnchorCellAddress, bool validateCurrentCell, bool throughMouseClick);" />
11669       <MemberType>Method</MemberType>
11670       <ReturnValue>
11671         <ReturnType>System.Boolean</ReturnType>
11672       </ReturnValue>
11673       <Parameters>
11674         <Parameter Name="columnIndex" Type="System.Int32" />
11675         <Parameter Name="rowIndex" Type="System.Int32" />
11676         <Parameter Name="setAnchorCellAddress" Type="System.Boolean" />
11677         <Parameter Name="validateCurrentCell" Type="System.Boolean" />
11678         <Parameter Name="throughMouseClick" Type="System.Boolean" />
11679       </Parameters>
11680       <Docs>
11681         <since version=".NET 2.0" />
11682         <remarks>
11683           <attribution license="cc4" from="Microsoft" modified="false" />
11684           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control uses this method whenever it changes the current cell. This method changes the current cell without changing the selection and optionally without validating the previous cell or changing the selection anchor cell. The anchor cell is the first cell of a block of multiple cells that the user can select by holding down the SHIFT key and clicking the last cell of the block. </para>
11685           <para>If <paramref name="rowIndex" /> and <paramref name="columnIndex" /> are both -1, the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property returns null.</para>
11686         </remarks>
11687         <summary>
11688           <attribution license="cc4" from="Microsoft" modified="false" />
11689           <para>Sets the currently active cell.</para>
11690         </summary>
11691         <returns>
11692           <attribution license="cc4" from="Microsoft" modified="false" />
11693           <para>true if the current cell was successfully set; otherwise, false.</para>
11694         </returns>
11695         <param name="columnIndex">
11696           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column containing the cell.</param>
11697         <param name="rowIndex">
11698           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row containing the cell.</param>
11699         <param name="setAnchorCellAddress">
11700           <attribution license="cc4" from="Microsoft" modified="false" />true to make the new current cell the anchor cell for a subsequent multicell selection using the SHIFT key; otherwise, false.</param>
11701         <param name="validateCurrentCell">
11702           <attribution license="cc4" from="Microsoft" modified="false" />true to validate the value in the old current cell and cancel the change if validation fails; otherwise, false.</param>
11703         <param name="throughMouseClick">
11704           <attribution license="cc4" from="Microsoft" modified="false" />true if the current cell is being set as a result of a mouse click; otherwise, false.</param>
11705       </Docs>
11706       <AssemblyInfo>
11707         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11708       </AssemblyInfo>
11709     </Member>
11710     <Member MemberName="SetSelectedCellCore">
11711       <MemberSignature Language="C#" Value="protected virtual void SetSelectedCellCore (int columnIndex, int rowIndex, bool selected);" />
11712       <MemberType>Method</MemberType>
11713       <ReturnValue>
11714         <ReturnType>System.Void</ReturnType>
11715       </ReturnValue>
11716       <Parameters>
11717         <Parameter Name="columnIndex" Type="System.Int32" />
11718         <Parameter Name="rowIndex" Type="System.Int32" />
11719         <Parameter Name="selected" Type="System.Boolean" />
11720       </Parameters>
11721       <Docs>
11722         <since version=".NET 2.0" />
11723         <remarks>
11724           <attribution license="cc4" from="Microsoft" modified="false" />
11725           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control uses this method whenever it changes the selection state of a cell. The selection state changes without regard to the current <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value, and without changing the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property value. This is useful when you want to implement your own selection modes.</para>
11726         </remarks>
11727         <summary>
11728           <attribution license="cc4" from="Microsoft" modified="false" />
11729           <para>Changes the selection state of the cell with the specified row and column indexes.</para>
11730         </summary>
11731         <param name="columnIndex">
11732           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column containing the cell.</param>
11733         <param name="rowIndex">
11734           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row containing the cell.</param>
11735         <param name="selected">
11736           <attribution license="cc4" from="Microsoft" modified="false" />true to select the cell; false to cancel the selection of the cell.</param>
11737       </Docs>
11738       <AssemblyInfo>
11739         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11740       </AssemblyInfo>
11741     </Member>
11742     <Member MemberName="SetSelectedColumnCore">
11743       <MemberSignature Language="C#" Value="protected virtual void SetSelectedColumnCore (int columnIndex, bool selected);" />
11744       <MemberType>Method</MemberType>
11745       <ReturnValue>
11746         <ReturnType>System.Void</ReturnType>
11747       </ReturnValue>
11748       <Parameters>
11749         <Parameter Name="columnIndex" Type="System.Int32" />
11750         <Parameter Name="selected" Type="System.Boolean" />
11751       </Parameters>
11752       <Docs>
11753         <since version=".NET 2.0" />
11754         <remarks>
11755           <attribution license="cc4" from="Microsoft" modified="false" />
11756           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control uses this method whenever it changes the selection state of a column. The selection state changes without regard to the current <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value, and without changing the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property value. This is useful when you want to implement your own selection modes.</para>
11757         </remarks>
11758         <summary>
11759           <attribution license="cc4" from="Microsoft" modified="false" />
11760           <para>Changes the selection state of the column with the specified index.</para>
11761         </summary>
11762         <param name="columnIndex">
11763           <attribution license="cc4" from="Microsoft" modified="false" />The index of the column.</param>
11764         <param name="selected">
11765           <attribution license="cc4" from="Microsoft" modified="false" />true to select the column; false to cancel the selection of the column.</param>
11766       </Docs>
11767       <AssemblyInfo>
11768         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11769       </AssemblyInfo>
11770     </Member>
11771     <Member MemberName="SetSelectedRowCore">
11772       <MemberSignature Language="C#" Value="protected virtual void SetSelectedRowCore (int rowIndex, bool selected);" />
11773       <MemberType>Method</MemberType>
11774       <ReturnValue>
11775         <ReturnType>System.Void</ReturnType>
11776       </ReturnValue>
11777       <Parameters>
11778         <Parameter Name="rowIndex" Type="System.Int32" />
11779         <Parameter Name="selected" Type="System.Boolean" />
11780       </Parameters>
11781       <Docs>
11782         <since version=".NET 2.0" />
11783         <remarks>
11784           <attribution license="cc4" from="Microsoft" modified="false" />
11785           <para>The <see cref="T:System.Windows.Forms.DataGridView" /> control uses this method whenever it changes the selection state of a row. The selection state changes without regard to the current <see cref="P:System.Windows.Forms.DataGridView.SelectionMode" /> property value, and without changing the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property value. This is useful when you want to implement your own selection modes.</para>
11786         </remarks>
11787         <summary>
11788           <attribution license="cc4" from="Microsoft" modified="false" />
11789           <para>Changes the selection state of the row with the specified index.</para>
11790         </summary>
11791         <param name="rowIndex">
11792           <attribution license="cc4" from="Microsoft" modified="false" />The index of the row.</param>
11793         <param name="selected">
11794           <attribution license="cc4" from="Microsoft" modified="false" />true to select the row; false to cancel the selection of the row.</param>
11795       </Docs>
11796       <AssemblyInfo>
11797         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11798       </AssemblyInfo>
11799     </Member>
11800     <Member MemberName="ShowCellErrors">
11801       <MemberSignature Language="C#" Value="public bool ShowCellErrors { set; get; }" />
11802       <MemberType>Property</MemberType>
11803       <Attributes>
11804         <Attribute>
11805           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
11806         </Attribute>
11807       </Attributes>
11808       <ReturnValue>
11809         <ReturnType>System.Boolean</ReturnType>
11810       </ReturnValue>
11811       <Docs>
11812         <value>To be added.</value>
11813         <remarks>To be added.</remarks>
11814         <since version=".NET 2.0" />
11815         <summary>
11816           <attribution license="cc4" from="Microsoft" modified="false" />
11817           <para>Gets or sets a value indicating whether to show cell errors.</para>
11818         </summary>
11819       </Docs>
11820       <AssemblyInfo>
11821         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11822       </AssemblyInfo>
11823     </Member>
11824     <Member MemberName="ShowCellToolTips">
11825       <MemberSignature Language="C#" Value="public bool ShowCellToolTips { set; get; }" />
11826       <MemberType>Property</MemberType>
11827       <Attributes>
11828         <Attribute>
11829           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
11830         </Attribute>
11831       </Attributes>
11832       <ReturnValue>
11833         <ReturnType>System.Boolean</ReturnType>
11834       </ReturnValue>
11835       <Docs>
11836         <value>To be added.</value>
11837         <since version=".NET 2.0" />
11838         <remarks>
11839           <attribution license="cc4" from="Microsoft" modified="false" />
11840           <para>When the value of this property is true and the mouse pointer is over a cell, the cell displays a ToolTip when one of the following conditions is met:</para>
11841           <list type="bullet">
11842             <item>
11843               <para>The value of the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is not null or the value of the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true, and a handler for the <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event sets the <see cref="P:System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs.ToolTipText" /> property to a value other than <see cref="F:System.String.Empty" />.</para>
11844             </item>
11845             <item>
11846               <para>The <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> property of the cell has a value other than <see cref="F:System.String.Empty" />. Setting this property has no effect when there is a <see cref="E:System.Windows.Forms.DataGridView.CellToolTipTextNeeded" /> event handler because getting the value of the property automatically raises the event and returns the ToolTip text specified in the event handler. </para>
11847             </item>
11848             <item>
11849               <para>The cell value is truncated in the cell display. When the value of the cell <see cref="P:System.Windows.Forms.DataGridViewCell.ToolTipText" /> property value is <see cref="F:System.String.Empty" />, the full value of the truncated cell value is displayed in the ToolTip.</para>
11850             </item>
11851           </list>
11852         </remarks>
11853         <summary>
11854           <attribution license="cc4" from="Microsoft" modified="false" />
11855           <para>Gets or sets a value indicating whether or not ToolTips will show when the mouse pointer pauses on a cell.</para>
11856         </summary>
11857       </Docs>
11858       <AssemblyInfo>
11859         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11860       </AssemblyInfo>
11861     </Member>
11862     <Member MemberName="ShowEditingIcon">
11863       <MemberSignature Language="C#" Value="public bool ShowEditingIcon { set; get; }" />
11864       <MemberType>Property</MemberType>
11865       <Attributes>
11866         <Attribute>
11867           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
11868         </Attribute>
11869       </Attributes>
11870       <ReturnValue>
11871         <ReturnType>System.Boolean</ReturnType>
11872       </ReturnValue>
11873       <Docs>
11874         <value>To be added.</value>
11875         <since version=".NET 2.0" />
11876         <remarks>
11877           <attribution license="cc4" from="Microsoft" modified="false" />
11878           <para>The row header will display an editing glyph that looks like a pencil when the current cell is in edit mode and the user has made changes to the cell. The editing glyph is colored by using the <see cref="P:System.Windows.Forms.DataGridViewCellStyle.ForeColor" /> property of the row header cell. The glyph is not rendered if there is not enough space to display it completely. For example, if the row header cell has its <see cref="P:System.Windows.Forms.DataGridViewCell.Value" /> property set, the glyph is removed if there is not enough room for both the text and glyph.</para>
11879           <para>The display of the editing glyph is controlled by the value of the <see cref="P:System.Windows.Forms.DataGridView.IsCurrentRowDirty" /> property in virtual mode. Otherwise, it is controlled by the <see cref="P:System.Windows.Forms.DataGridView.IsCurrentCellDirty" /> property.</para>
11880           <para>The standard glyph is not publicly exposed. To customize the glyph, you can create a custom <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> class.</para>
11881         </remarks>
11882         <summary>
11883           <attribution license="cc4" from="Microsoft" modified="false" />
11884           <para>Gets or sets a value indicating whether or not the editing glyph is visible in the row header of the cell being edited.</para>
11885         </summary>
11886       </Docs>
11887       <AssemblyInfo>
11888         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11889       </AssemblyInfo>
11890     </Member>
11891     <Member MemberName="ShowRowErrors">
11892       <MemberSignature Language="C#" Value="public bool ShowRowErrors { set; get; }" />
11893       <MemberType>Property</MemberType>
11894       <Attributes>
11895         <Attribute>
11896           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
11897         </Attribute>
11898       </Attributes>
11899       <ReturnValue>
11900         <ReturnType>System.Boolean</ReturnType>
11901       </ReturnValue>
11902       <Docs>
11903         <value>To be added.</value>
11904         <since version=".NET 2.0" />
11905         <remarks>
11906           <attribution license="cc4" from="Microsoft" modified="false" />
11907           <para>The <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> property indicates if there is an error in one of the cells in a row. If <see cref="P:System.Windows.Forms.DataGridViewRow.ErrorText" /> is set to a value other than <see cref="F:System.String.Empty" />, then an error glyph (<mediaLinkInline><image /></mediaLinkInline>) is shown in the row header. </para>
11908           <para>The default width of the row header includes enough room to display the error glyph, whether or not the glyph is displayed. If the row header size is adjusted so that there is not enough space to display the glyph completely, the glyph is not rendered.</para>
11909           <para>Because row headers can display both text and glyphs, header content is displayed by priority, as follows:</para>
11910           <list type="ordered">
11911             <item>
11912               <para>Text displayed in the row header cell.</para>
11913             </item>
11914             <item>
11915               <para>The editing glyph.</para>
11916             </item>
11917             <item>
11918               <para>The error glyph.</para>
11919             </item>
11920           </list>
11921           <para>For example, if the row width is decreased, the error glyph disappears first, then the standard glyph, then text.  </para>
11922           <para>Advanced users can customize the error glyph by developing a custom <see cref="T:System.Windows.Forms.DataGridViewRowHeaderCell" /> or <see cref="T:System.Windows.Forms.DataGridViewCell" /> class.</para>
11923         </remarks>
11924         <summary>
11925           <attribution license="cc4" from="Microsoft" modified="false" />
11926           <para>Gets or sets a value indicating whether row headers will display error glyphs for each row that contains a data entry error. </para>
11927         </summary>
11928       </Docs>
11929       <AssemblyInfo>
11930         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11931       </AssemblyInfo>
11932     </Member>
11933     <Member MemberName="Sort">
11934       <MemberSignature Language="C#" Value="public virtual void Sort (System.Collections.IComparer comparer);" />
11935       <MemberType>Method</MemberType>
11936       <ReturnValue>
11937         <ReturnType>System.Void</ReturnType>
11938       </ReturnValue>
11939       <Parameters>
11940         <Parameter Name="comparer" Type="System.Collections.IComparer" />
11941       </Parameters>
11942       <Docs>
11943         <since version=".NET 2.0" />
11944         <remarks>
11945           <attribution license="cc4" from="Microsoft" modified="false" />
11946           <para>This method allows advanced customization of the sorting feature of the <see cref="T:System.Windows.Forms.DataGridView" /> class. In order to implement a highly customized sorting operation, you can write an event handler for the <see cref="E:System.Windows.Forms.DataGridView.ColumnHeaderMouseClick" /> event and call this method with an instance of a class that implements the <see cref="T:System.Collections.IComparer" /> interface as a parameter. In this case, you will typically set the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property to <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic" /> to disable automatic sorting and to leave room for a sorting glyph. When sorting by columns set to programmatic sort mode, you must display the sorting glyph yourself by setting the <see cref="P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection" /> property.</para>
11947           <para>This method works only when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is not set. When you bind the <see cref="T:System.Windows.Forms.DataGridView" /> control to an external data source, you must use the sorting operations provided by that data source. When you provide your own data source by implementing virtual mode, you must also handle the sorting operations yourself. </para>
11948           <para>Calling this method automatically sets the <see cref="P:System.Windows.Forms.DataGridView.CurrentCell" /> property to null.</para>
11949         </remarks>
11950         <summary>
11951           <attribution license="cc4" from="Microsoft" modified="false" />
11952           <para>Sorts the contents of the <see cref="T:System.Windows.Forms.DataGridView" /> control using an implementation of the <see cref="T:System.Collections.IComparer" /> interface.</para>
11953         </summary>
11954         <param name="comparer">
11955           <attribution license="cc4" from="Microsoft" modified="false" />An implementation of <see cref="T:System.Collections.IComparer" /> that performs the custom sorting operation. </param>
11956       </Docs>
11957       <AssemblyInfo>
11958         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11959       </AssemblyInfo>
11960     </Member>
11961     <Member MemberName="Sort">
11962       <MemberSignature Language="C#" Value="public virtual void Sort (System.Windows.Forms.DataGridViewColumn dataGridViewColumn, System.ComponentModel.ListSortDirection direction);" />
11963       <MemberType>Method</MemberType>
11964       <ReturnValue>
11965         <ReturnType>System.Void</ReturnType>
11966       </ReturnValue>
11967       <Parameters>
11968         <Parameter Name="dataGridViewColumn" Type="System.Windows.Forms.DataGridViewColumn" />
11969         <Parameter Name="direction" Type="System.ComponentModel.ListSortDirection" />
11970       </Parameters>
11971       <Docs>
11972         <since version=".NET 2.0" />
11973         <remarks>
11974           <attribution license="cc4" from="Microsoft" modified="false" />
11975           <para>This method sorts the contents of the <see cref="T:System.Windows.Forms.DataGridView" /> by comparing values in the specified column. By default, the sort operation will use the <see cref="M:System.Collections.Comparer.Compare(System.Object,System.Object)" /> method to compare pairs of cells in the column using the <see cref="P:System.Windows.Forms.DataGridViewCell.Value" /> property.</para>
11976           <para>For columns with the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property set to <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" />, the <see cref="P:System.Windows.Forms.DataGridView.SortedColumn" /> and <see cref="P:System.Windows.Forms.DataGridView.SortOrder" /> properties are set automatically and the appropriate sorting glyph is displayed. For columns with the <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property set to <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic" />, you must display the sorting glyph yourself through the <see cref="P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection" /> property.</para>
11977           <para>You can customize the sorting operation used by this method by handling the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event. This event occurs only when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property has not been set.</para>
11978           <para>When the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property has been set, this method works for data-bound columns only. Data-bound columns have had their <see cref="P:System.Windows.Forms.DataGridViewColumn.DataPropertyName" /> property set. This causes the <see cref="P:System.Windows.Forms.DataGridViewColumn.IsDataBound" /> property to return true. </para>
11979           <para>If your <see cref="T:System.Windows.Forms.DataGridView" /> control contains both bound and unbound columns, you must implement virtual mode to maintain the values of the unbound columns when the control is sorted by a bound column. You can do this by setting the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property to true and handling the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event. If the column is editable, you should also handle the <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event. For more information about virtual mode, see <format type="text/html"><a href="98236267-f08e-4918-bcf9-77acf050a3ca">How to: Implement Virtual Mode in the Windows Forms DataGridView Control</a></format>. Sorting by unbound columns when the control is data-bound is not supported. </para>
11980         </remarks>
11981         <summary>
11982           <attribution license="cc4" from="Microsoft" modified="false" />
11983           <para>Sorts the contents of the <see cref="T:System.Windows.Forms.DataGridView" /> control in ascending or descending order based on the contents of the specified column.</para>
11984         </summary>
11985         <param name="dataGridViewColumn">
11986           <attribution license="cc4" from="Microsoft" modified="false" />The column by which to sort the contents of the <see cref="T:System.Windows.Forms.DataGridView" />. </param>
11987         <param name="direction">
11988           <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.ComponentModel.ListSortDirection" /> values. </param>
11989       </Docs>
11990       <AssemblyInfo>
11991         <AssemblyVersion>2.0.0.0</AssemblyVersion>
11992       </AssemblyInfo>
11993     </Member>
11994     <Member MemberName="SortCompare">
11995       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewSortCompareEventHandler SortCompare;" />
11996       <MemberType>Event</MemberType>
11997       <Attributes>
11998         <Attribute>
11999           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
12000         </Attribute>
12001       </Attributes>
12002       <ReturnValue>
12003         <ReturnType>System.Windows.Forms.DataGridViewSortCompareEventHandler</ReturnType>
12004       </ReturnValue>
12005       <Docs>
12006         <since version=".NET 2.0" />
12007         <remarks>
12008           <attribution license="cc4" from="Microsoft" modified="false" />
12009           <para>This event occurs only when the <see cref="P:System.Windows.Forms.DataGridView.DataSource" /> property is not set and the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property value is false.</para>
12010           <para>This event compares pairs of cells in the column being sorted. It occurs only when the user clicks the header of a column with a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" />, or when you call the <see cref="M:System.Windows.Forms.DataGridView.Sort(System.Windows.Forms.DataGridViewColumn,System.ComponentModel.ListSortDirection)" /> overload. When this event occurs for a column with a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic" />, you must display the sorting glyph yourself through the <see cref="P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection" /> property.</para>
12011           <para>You can use this event to sort rows using the cell values in one column or in multiple columns. Use the <see cref="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue1" /> and <see cref="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.CellValue2" /> properties to compare cell values in the column specified in the <see cref="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.Column" /> property. Use the <see cref="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex1" /> and <see cref="P:System.Windows.Forms.DataGridViewSortCompareEventArgs.RowIndex2" /> properties to access values in other columns through the <see cref="P:System.Windows.Forms.DataGridView.Rows" /> collection.</para>
12012           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
12013         </remarks>
12014         <summary>
12015           <attribution license="cc4" from="Microsoft" modified="false" />
12016           <para>Occurs when the <see cref="T:System.Windows.Forms.DataGridView" /> compares two cell values to perform a sort operation.</para>
12017         </summary>
12018       </Docs>
12019       <AssemblyInfo>
12020         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12021       </AssemblyInfo>
12022     </Member>
12023     <Member MemberName="Sorted">
12024       <MemberSignature Language="C#" Value="public event EventHandler Sorted;" />
12025       <MemberType>Event</MemberType>
12026       <ReturnValue>
12027         <ReturnType>System.EventHandler</ReturnType>
12028       </ReturnValue>
12029       <Docs>
12030         <since version=".NET 2.0" />
12031         <remarks>
12032           <attribution license="cc4" from="Microsoft" modified="false" />
12033           <para>This event does not occur when the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is set to true and the control is sorted by an unbound column.</para>
12034           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
12035         </remarks>
12036         <summary>
12037           <attribution license="cc4" from="Microsoft" modified="false" />
12038           <para>Occurs when the <see cref="T:System.Windows.Forms.DataGridView" /> control completes a sorting operation.</para>
12039         </summary>
12040       </Docs>
12041       <AssemblyInfo>
12042         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12043       </AssemblyInfo>
12044     </Member>
12045     <Member MemberName="SortedColumn">
12046       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewColumn SortedColumn { get; }" />
12047       <MemberType>Property</MemberType>
12048       <Attributes>
12049         <Attribute>
12050           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12051         </Attribute>
12052       </Attributes>
12053       <ReturnValue>
12054         <ReturnType>System.Windows.Forms.DataGridViewColumn</ReturnType>
12055       </ReturnValue>
12056       <Docs>
12057         <value>To be added.</value>
12058         <since version=".NET 2.0" />
12059         <remarks>
12060           <attribution license="cc4" from="Microsoft" modified="false" />
12061           <para>If the <see cref="T:System.Windows.Forms.DataGridView" /> is not sorted, this property will return null.</para>
12062           <para>When the column indicated by this property has a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" />, it will display a sorting glyph based on the value of the <see cref="P:System.Windows.Forms.DataGridView.SortOrder" /> property.</para>
12063           <para>When the column has a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic" />, you must display the sorting glyph yourself through the <see cref="P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection" /> property.</para>
12064           <block subset="none" type="note">
12065             <para>The value of this property is not meaningful when you sort the control using custom sorting. For more information about custom sorting, see the <see cref="M:System.Windows.Forms.DataGridView.Sort(System.Collections.IComparer)" /> method and the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event.</para>
12066           </block>
12067         </remarks>
12068         <summary>
12069           <attribution license="cc4" from="Microsoft" modified="false" />
12070           <para>Gets the column by which the <see cref="T:System.Windows.Forms.DataGridView" /> contents are currently sorted.</para>
12071         </summary>
12072       </Docs>
12073       <AssemblyInfo>
12074         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12075       </AssemblyInfo>
12076     </Member>
12077     <Member MemberName="SortOrder">
12078       <MemberSignature Language="C#" Value="public System.Windows.Forms.SortOrder SortOrder { get; }" />
12079       <MemberType>Property</MemberType>
12080       <Attributes>
12081         <Attribute>
12082           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12083         </Attribute>
12084       </Attributes>
12085       <ReturnValue>
12086         <ReturnType>System.Windows.Forms.SortOrder</ReturnType>
12087       </ReturnValue>
12088       <Docs>
12089         <value>To be added.</value>
12090         <since version=".NET 2.0" />
12091         <remarks>
12092           <attribution license="cc4" from="Microsoft" modified="false" />
12093           <para>This property is used to determine which sorting glyph appears when the column specified by the <see cref="P:System.Windows.Forms.DataGridView.SortedColumn" /> property has a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Automatic" />. When the column has a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.Programmatic" />, you must display and hide the sorting glyph yourself through the <see cref="P:System.Windows.Forms.DataGridViewColumnHeaderCell.SortGlyphDirection" /> property. When the column has a <see cref="P:System.Windows.Forms.DataGridViewColumn.SortMode" /> property value of <see cref="F:System.Windows.Forms.DataGridViewColumnSortMode.NotSortable" />, you can display the sorting glyph, but space is not reserved for it if the column is automatically resized.</para>
12094           <block subset="none" type="note">
12095             <para>The value of this property is not meaningful when you sort the control using custom sorting. For more information about custom sorting, see the <see cref="Overload:System.Windows.Forms.DataGridView.Sort" /> method and the <see cref="E:System.Windows.Forms.DataGridView.SortCompare" /> event.</para>
12096           </block>
12097         </remarks>
12098         <summary>
12099           <attribution license="cc4" from="Microsoft" modified="false" />
12100           <para>Gets a value indicating whether the items in the <see cref="T:System.Windows.Forms.DataGridView" /> control are sorted in ascending or descending order, or are not sorted.</para>
12101         </summary>
12102       </Docs>
12103       <AssemblyInfo>
12104         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12105       </AssemblyInfo>
12106     </Member>
12107     <Member MemberName="StandardTab">
12108       <MemberSignature Language="C#" Value="public bool StandardTab { set; get; }" />
12109       <MemberType>Property</MemberType>
12110       <Attributes>
12111         <Attribute>
12112           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
12113         </Attribute>
12114         <Attribute>
12115           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
12116         </Attribute>
12117       </Attributes>
12118       <ReturnValue>
12119         <ReturnType>System.Boolean</ReturnType>
12120       </ReturnValue>
12121       <Docs>
12122         <value>To be added.</value>
12123         <since version=".NET 2.0" />
12124         <remarks>
12125           <attribution license="cc4" from="Microsoft" modified="false" />
12126           <para>Setting this property to false allows the TAB key to move the focus through the grid of cells. The following table describes how the cell focus changes when the given TAB key combinations are pressed.</para>
12127           <list type="table">
12128             <listheader>
12129               <item>
12130                 <term>
12131                   <para>Key combination</para>
12132                 </term>
12133                 <description>
12134                   <para>Result</para>
12135                 </description>
12136               </item>
12137             </listheader>
12138             <item>
12139               <term>
12140                 <para>TAB</para>
12141               </term>
12142               <description>
12143                 <para>If the <see cref="P:System.Windows.Forms.DataGridView.StandardTab" /> property is false, the focus moves to the next cell in the row. If the focus is in the last cell in the row, the focus moves to the first cell in the next row. If the focus is in the last cell in the <see cref="T:System.Windows.Forms.DataGridView" />, the focus moves to the next control in the tab order.</para>
12144               </description>
12145             </item>
12146             <item>
12147               <term>
12148                 <para>SHIFT+TAB</para>
12149               </term>
12150               <description>
12151                 <para>If <see cref="P:System.Windows.Forms.DataGridView.StandardTab" /> is false, the focus moves to the previous cell in the row. If the focus is in the first cell in the row, the focus moves to the last cell in the previous row. If the focus is in the first cell in the <see cref="T:System.Windows.Forms.DataGridView" />, the focus moves to the previous control in the tab order.</para>
12152               </description>
12153             </item>
12154             <item>
12155               <term>
12156                 <para>CTRL+TAB</para>
12157               </term>
12158               <description>
12159                 <para>The focus moves to the next control in the tab order.</para>
12160               </description>
12161             </item>
12162           </list>
12163         </remarks>
12164         <summary>
12165           <attribution license="cc4" from="Microsoft" modified="false" />
12166           <para>Gets or sets a value indicating whether the TAB key moves the focus to the next control in the tab order rather than moving focus to the next cell in the control.</para>
12167         </summary>
12168       </Docs>
12169       <AssemblyInfo>
12170         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12171       </AssemblyInfo>
12172     </Member>
12173     <Member MemberName="StyleChanged">
12174       <MemberSignature Language="C#" Value="public event EventHandler StyleChanged;" />
12175       <MemberType>Event</MemberType>
12176       <Attributes>
12177         <Attribute>
12178           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
12179         </Attribute>
12180         <Attribute>
12181           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12182         </Attribute>
12183       </Attributes>
12184       <ReturnValue>
12185         <ReturnType>System.EventHandler</ReturnType>
12186       </ReturnValue>
12187       <Docs>
12188         <since version=".NET 2.0" />
12189         <remarks>
12190           <attribution license="cc4" from="Microsoft" modified="false" />
12191           <para>This event is not relevant to this control.</para>
12192           <para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
12193         </remarks>
12194         <summary>
12195           <attribution license="cc4" from="Microsoft" modified="false" />
12196           <para>Occurs when the control style changes.</para>
12197         </summary>
12198       </Docs>
12199       <AssemblyInfo>
12200         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12201       </AssemblyInfo>
12202     </Member>
12203     <Member MemberName="System.ComponentModel.ISupportInitialize.BeginInit">
12204       <MemberSignature Language="C#" Value="void ISupportInitialize.BeginInit ();" />
12205       <MemberType>Method</MemberType>
12206       <AssemblyInfo>
12207         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12208       </AssemblyInfo>
12209       <ReturnValue>
12210         <ReturnType>System.Void</ReturnType>
12211       </ReturnValue>
12212       <Parameters />
12213       <Docs>
12214         <remarks>
12215           <attribution license="cc4" from="Microsoft" modified="false" />
12216           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Windows.Forms.DataGridView" /> instance is cast to an <see cref="T:System.ComponentModel.ISupportInitialize" /> instance.</para>
12217         </remarks>
12218         <summary>
12219           <attribution license="cc4" from="Microsoft" modified="false" />
12220           <para>For a description of this member, see <see cref="M:System.ComponentModel.ISupportInitialize.BeginInit" />.</para>
12221         </summary>
12222       </Docs>
12223     </Member>
12224     <Member MemberName="System.ComponentModel.ISupportInitialize.EndInit">
12225       <MemberSignature Language="C#" Value="void ISupportInitialize.EndInit ();" />
12226       <MemberType>Method</MemberType>
12227       <AssemblyInfo>
12228         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12229       </AssemblyInfo>
12230       <ReturnValue>
12231         <ReturnType>System.Void</ReturnType>
12232       </ReturnValue>
12233       <Parameters />
12234       <Docs>
12235         <remarks>
12236           <attribution license="cc4" from="Microsoft" modified="false" />
12237           <para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Windows.Forms.DataGridView" /> instance is cast to an <see cref="T:System.ComponentModel.ISupportInitialize" /> instance.</para>
12238         </remarks>
12239         <summary>
12240           <attribution license="cc4" from="Microsoft" modified="false" />
12241           <para>For a description of this member, see <see cref="M:System.ComponentModel.ISupportInitialize.EndInit" />.</para>
12242         </summary>
12243       </Docs>
12244     </Member>
12245     <Member MemberName="Text">
12246       <MemberSignature Language="C#" Value="public override string Text { set; get; }" />
12247       <MemberType>Property</MemberType>
12248       <Attributes>
12249         <Attribute>
12250           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
12251         </Attribute>
12252         <Attribute>
12253           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12254         </Attribute>
12255         <Attribute>
12256           <AttributeName>System.ComponentModel.Bindable(false)</AttributeName>
12257         </Attribute>
12258       </Attributes>
12259       <ReturnValue>
12260         <ReturnType>System.String</ReturnType>
12261       </ReturnValue>
12262       <Docs>
12263         <value>To be added.</value>
12264         <since version=".NET 2.0" />
12265         <remarks>
12266           <attribution license="cc4" from="Microsoft" modified="false" />
12267           <para>This property is not meaningful for this control.</para>
12268         </remarks>
12269         <summary>
12270           <attribution license="cc4" from="Microsoft" modified="false" />
12271           <para>Gets or sets the text associated with the control.</para>
12272         </summary>
12273       </Docs>
12274       <AssemblyInfo>
12275         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12276       </AssemblyInfo>
12277     </Member>
12278     <Member MemberName="TextChanged">
12279       <MemberSignature Language="C#" Value="public event EventHandler TextChanged;" />
12280       <MemberType>Event</MemberType>
12281       <Attributes>
12282         <Attribute>
12283           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
12284         </Attribute>
12285         <Attribute>
12286           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12287         </Attribute>
12288       </Attributes>
12289       <ReturnValue>
12290         <ReturnType>System.EventHandler</ReturnType>
12291       </ReturnValue>
12292       <Docs>
12293         <since version=".NET 2.0" />
12294         <remarks>
12295           <attribution license="cc4" from="Microsoft" modified="false" />
12296           <para>Although the <see cref="P:System.Windows.Forms.DataGridView.Text" /> property is not meaningful for this control, its value can be changed, thereby causing this event to occur.</para>
12297         </remarks>
12298         <summary>
12299           <attribution license="cc4" from="Microsoft" modified="false" />
12300           <para>Occurs when the value of the <see cref="P:System.Windows.Forms.DataGridView.Text" /> property changes.</para>
12301         </summary>
12302       </Docs>
12303       <AssemblyInfo>
12304         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12305       </AssemblyInfo>
12306     </Member>
12307     <Member MemberName="TopLeftHeaderCell">
12308       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridViewHeaderCell TopLeftHeaderCell { set; get; }" />
12309       <MemberType>Property</MemberType>
12310       <Attributes>
12311         <Attribute>
12312           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
12313         </Attribute>
12314         <Attribute>
12315           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12316         </Attribute>
12317       </Attributes>
12318       <ReturnValue>
12319         <ReturnType>System.Windows.Forms.DataGridViewHeaderCell</ReturnType>
12320       </ReturnValue>
12321       <Docs>
12322         <value>To be added.</value>
12323         <since version=".NET 2.0" />
12324         <remarks>
12325           <attribution license="cc4" from="Microsoft" modified="false" />
12326           <para>Setting this property allows you to set a value for the cell, associate a shortcut menu with it, or perform any other operations you can perform on a <see cref="T:System.Windows.Forms.DataGridViewHeaderCell" />.</para>
12327           <para>In applications designed for use with right-to-left languages, the cell represented by this property is typically in the upper-right corner.</para>
12328         </remarks>
12329         <summary>
12330           <attribution license="cc4" from="Microsoft" modified="false" />
12331           <para>Gets or sets the header cell located in the upper left corner of the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
12332         </summary>
12333       </Docs>
12334       <AssemblyInfo>
12335         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12336       </AssemblyInfo>
12337     </Member>
12338     <Member MemberName="UpdateCellErrorText">
12339       <MemberSignature Language="C#" Value="public void UpdateCellErrorText (int columnIndex, int rowIndex);" />
12340       <MemberType>Method</MemberType>
12341       <ReturnValue>
12342         <ReturnType>System.Void</ReturnType>
12343       </ReturnValue>
12344       <Parameters>
12345         <Parameter Name="columnIndex" Type="System.Int32" />
12346         <Parameter Name="rowIndex" Type="System.Int32" />
12347       </Parameters>
12348       <Docs>
12349         <since version=".NET 2.0" />
12350         <remarks>
12351           <attribution license="cc4" from="Microsoft" modified="false" />
12352           <para>Use this method when you maintain cell error text yourself by handling the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event. Call this method when you change the stored error text for the specified cell. This will invalidate the cell, forcing the <see cref="T:System.Windows.Forms.DataGridView" /> control to retrieve the updated error text through the <see cref="E:System.Windows.Forms.DataGridView.CellErrorTextNeeded" /> event handler.</para>
12353           <para>Although you can use this method to update errors for header cells, column header cells do not display error glyphs.  </para>
12354         </remarks>
12355         <summary>
12356           <attribution license="cc4" from="Microsoft" modified="false" />
12357           <para>Forces the cell at the specified location to update its error text.</para>
12358         </summary>
12359         <param name="columnIndex">
12360           <attribution license="cc4" from="Microsoft" modified="false" />The column index of the cell to update, or -1 to indicate a row header cell.</param>
12361         <param name="rowIndex">
12362           <attribution license="cc4" from="Microsoft" modified="false" />The row index of the cell to update, or -1 to indicate a column header cell.</param>
12363       </Docs>
12364       <AssemblyInfo>
12365         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12366       </AssemblyInfo>
12367     </Member>
12368     <Member MemberName="UpdateCellValue">
12369       <MemberSignature Language="C#" Value="public void UpdateCellValue (int columnIndex, int rowIndex);" />
12370       <MemberType>Method</MemberType>
12371       <AssemblyInfo>
12372         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12373       </AssemblyInfo>
12374       <ReturnValue>
12375         <ReturnType>System.Void</ReturnType>
12376       </ReturnValue>
12377       <Parameters>
12378         <Parameter Name="columnIndex" Type="System.Int32" />
12379         <Parameter Name="rowIndex" Type="System.Int32" />
12380       </Parameters>
12381       <Docs>
12382         <remarks>
12383           <attribution license="cc4" from="Microsoft" modified="false" />
12384           <para>Use this method when you maintain cell values in virtual mode and you update a value in your custom data cache outside of a <see cref="E:System.Windows.Forms.DataGridView.CellValuePushed" /> event handler. </para>
12385           <para>This method invalidates the cell, forcing the control to retrieve the new value through the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event handler and apply any automatic sizing modes that are in effect. </para>
12386         </remarks>
12387         <summary>
12388           <attribution license="cc4" from="Microsoft" modified="false" />
12389           <para>Forces the control to update its display of the cell at the specified location based on its new value, applying any automatic sizing modes currently in effect. </para>
12390         </summary>
12391         <param name="columnIndex">
12392           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based column index of the cell with the new value.</param>
12393         <param name="rowIndex">
12394           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based row index of the cell with the new value.</param>
12395       </Docs>
12396     </Member>
12397     <Member MemberName="UpdateRowErrorText">
12398       <MemberSignature Language="C#" Value="public void UpdateRowErrorText (int rowIndex);" />
12399       <MemberType>Method</MemberType>
12400       <ReturnValue>
12401         <ReturnType>System.Void</ReturnType>
12402       </ReturnValue>
12403       <Parameters>
12404         <Parameter Name="rowIndex" Type="System.Int32" />
12405       </Parameters>
12406       <Docs>
12407         <since version=".NET 2.0" />
12408         <remarks>
12409           <attribution license="cc4" from="Microsoft" modified="false" />
12410           <para>This method is useful when you maintain row error text yourself by handling the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event. Call this method when you change the stored error text for the specified row. This will force the <see cref="T:System.Windows.Forms.DataGridView" /> control to retrieve the updated text through the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event handler.</para>
12411         </remarks>
12412         <summary>
12413           <attribution license="cc4" from="Microsoft" modified="false" />
12414           <para>Forces the row at the given row index to update its error text.</para>
12415         </summary>
12416         <param name="rowIndex">
12417           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the row to update.</param>
12418       </Docs>
12419       <AssemblyInfo>
12420         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12421       </AssemblyInfo>
12422     </Member>
12423     <Member MemberName="UpdateRowErrorText">
12424       <MemberSignature Language="C#" Value="public void UpdateRowErrorText (int rowIndexStart, int rowIndexEnd);" />
12425       <MemberType>Method</MemberType>
12426       <ReturnValue>
12427         <ReturnType>System.Void</ReturnType>
12428       </ReturnValue>
12429       <Parameters>
12430         <Parameter Name="rowIndexStart" Type="System.Int32" />
12431         <Parameter Name="rowIndexEnd" Type="System.Int32" />
12432       </Parameters>
12433       <Docs>
12434         <since version=".NET 2.0" />
12435         <remarks>
12436           <attribution license="cc4" from="Microsoft" modified="false" />
12437           <para>This method is useful when you maintain row error text yourself by handling the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event. Call this method when you change the stored error text for the specified rows. This will force the <see cref="T:System.Windows.Forms.DataGridView" /> control to retrieve the updated text through the <see cref="E:System.Windows.Forms.DataGridView.RowErrorTextNeeded" /> event handler.</para>
12438         </remarks>
12439         <summary>
12440           <attribution license="cc4" from="Microsoft" modified="false" />
12441           <para>Forces the rows in the given range to update their error text.</para>
12442         </summary>
12443         <param name="rowIndexStart">
12444           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the first row in the set of rows to update.</param>
12445         <param name="rowIndexEnd">
12446           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the last row in the set of rows to update.</param>
12447       </Docs>
12448       <AssemblyInfo>
12449         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12450       </AssemblyInfo>
12451     </Member>
12452     <Member MemberName="UpdateRowHeightInfo">
12453       <MemberSignature Language="C#" Value="public void UpdateRowHeightInfo (int rowIndex, bool updateToEnd);" />
12454       <MemberType>Method</MemberType>
12455       <ReturnValue>
12456         <ReturnType>System.Void</ReturnType>
12457       </ReturnValue>
12458       <Parameters>
12459         <Parameter Name="rowIndex" Type="System.Int32" />
12460         <Parameter Name="updateToEnd" Type="System.Boolean" />
12461       </Parameters>
12462       <Docs>
12463         <since version=".NET 2.0" />
12464         <remarks>
12465           <attribution license="cc4" from="Microsoft" modified="false" />
12466           <para>This method is useful when you maintain row heights yourself using handlers for the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> and <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> events. Call this method whenever you change the stored row heights outside of a <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoPushed" /> event handler. This will force the <see cref="T:System.Windows.Forms.DataGridView" /> control to retrieve the updated height information through the <see cref="E:System.Windows.Forms.DataGridView.RowHeightInfoNeeded" /> event handler.</para>
12467         </remarks>
12468         <summary>
12469           <attribution license="cc4" from="Microsoft" modified="false" />
12470           <para>Forces the specified row or rows to update their height information.</para>
12471         </summary>
12472         <param name="rowIndex">
12473           <attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the first row to update.</param>
12474         <param name="updateToEnd">
12475           <attribution license="cc4" from="Microsoft" modified="false" />true to update the specified row and all subsequent rows.</param>
12476       </Docs>
12477       <AssemblyInfo>
12478         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12479       </AssemblyInfo>
12480     </Member>
12481     <Member MemberName="UserAddedRow">
12482       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler UserAddedRow;" />
12483       <MemberType>Event</MemberType>
12484       <ReturnValue>
12485         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
12486       </ReturnValue>
12487       <Docs>
12488         <since version=".NET 2.0" />
12489         <remarks>
12490           <attribution license="cc4" from="Microsoft" modified="false" />
12491           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
12492         </remarks>
12493         <summary>
12494           <attribution license="cc4" from="Microsoft" modified="false" />
12495           <para>Occurs when the user has finished adding a row to the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
12496         </summary>
12497       </Docs>
12498       <AssemblyInfo>
12499         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12500       </AssemblyInfo>
12501     </Member>
12502     <Member MemberName="UserDeletedRow">
12503       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowEventHandler UserDeletedRow;" />
12504       <MemberType>Event</MemberType>
12505       <ReturnValue>
12506         <ReturnType>System.Windows.Forms.DataGridViewRowEventHandler</ReturnType>
12507       </ReturnValue>
12508       <Docs>
12509         <since version=".NET 2.0" />
12510         <remarks>
12511           <attribution license="cc4" from="Microsoft" modified="false" />
12512           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
12513         </remarks>
12514         <summary>
12515           <attribution license="cc4" from="Microsoft" modified="false" />
12516           <para>Occurs when the user has finished deleting a row from the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
12517         </summary>
12518       </Docs>
12519       <AssemblyInfo>
12520         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12521       </AssemblyInfo>
12522     </Member>
12523     <Member MemberName="UserDeletingRow">
12524       <MemberSignature Language="C#" Value="public event System.Windows.Forms.DataGridViewRowCancelEventHandler UserDeletingRow;" />
12525       <MemberType>Event</MemberType>
12526       <ReturnValue>
12527         <ReturnType>System.Windows.Forms.DataGridViewRowCancelEventHandler</ReturnType>
12528       </ReturnValue>
12529       <Docs>
12530         <since version=".NET 2.0" />
12531         <remarks>
12532           <attribution license="cc4" from="Microsoft" modified="false" />
12533           <para>This event can be canceled to prevent a row deletion from being completed.</para>
12534           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">Consuming Events</a></format>.</para>
12535         </remarks>
12536         <summary>
12537           <attribution license="cc4" from="Microsoft" modified="false" />
12538           <para>Occurs when the user deletes a row from the <see cref="T:System.Windows.Forms.DataGridView" /> control.</para>
12539         </summary>
12540       </Docs>
12541       <AssemblyInfo>
12542         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12543       </AssemblyInfo>
12544     </Member>
12545     <Member MemberName="UserSetCursor">
12546       <MemberSignature Language="C#" Value="public System.Windows.Forms.Cursor UserSetCursor { get; }" />
12547       <MemberType>Property</MemberType>
12548       <Attributes>
12549         <Attribute>
12550           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
12551         </Attribute>
12552         <Attribute>
12553           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12554         </Attribute>
12555       </Attributes>
12556       <ReturnValue>
12557         <ReturnType>System.Windows.Forms.Cursor</ReturnType>
12558       </ReturnValue>
12559       <Docs>
12560         <value>To be added.</value>
12561         <since version=".NET 2.0" />
12562         <remarks>
12563           <attribution license="cc4" from="Microsoft" modified="false" />
12564           <para>Although you can set the value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property, its value can change depending on the location of the mouse pointer. Use this property to retrieve the value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property in its normal state, which is either its default value, or a value specified in code. </para>
12565         </remarks>
12566         <summary>
12567           <attribution license="cc4" from="Microsoft" modified="false" />
12568           <para>Gets the default or user-specified value of the <see cref="P:System.Windows.Forms.Control.Cursor" /> property. </para>
12569         </summary>
12570       </Docs>
12571       <AssemblyInfo>
12572         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12573       </AssemblyInfo>
12574     </Member>
12575     <Member MemberName="VerticalScrollBar">
12576       <MemberSignature Language="C#" Value="protected System.Windows.Forms.ScrollBar VerticalScrollBar { get; }" />
12577       <MemberType>Property</MemberType>
12578       <ReturnValue>
12579         <ReturnType>System.Windows.Forms.ScrollBar</ReturnType>
12580       </ReturnValue>
12581       <Docs>
12582         <value>To be added.</value>
12583         <remarks>To be added.</remarks>
12584         <since version=".NET 2.0" />
12585         <summary>
12586           <attribution license="cc4" from="Microsoft" modified="false" />
12587           <para>Gets the vertical scroll bar of the control.</para>
12588         </summary>
12589       </Docs>
12590       <AssemblyInfo>
12591         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12592       </AssemblyInfo>
12593     </Member>
12594     <Member MemberName="VerticalScrollingOffset">
12595       <MemberSignature Language="C#" Value="public int VerticalScrollingOffset { get; }" />
12596       <MemberType>Property</MemberType>
12597       <Attributes>
12598         <Attribute>
12599           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)</AttributeName>
12600         </Attribute>
12601         <Attribute>
12602           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
12603         </Attribute>
12604       </Attributes>
12605       <ReturnValue>
12606         <ReturnType>System.Int32</ReturnType>
12607       </ReturnValue>
12608       <Docs>
12609         <value>To be added.</value>
12610         <remarks>To be added.</remarks>
12611         <since version=".NET 2.0" />
12612         <summary>
12613           <attribution license="cc4" from="Microsoft" modified="false" />
12614           <para>Gets the number of pixels by which the control is scrolled vertically.</para>
12615         </summary>
12616       </Docs>
12617       <AssemblyInfo>
12618         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12619       </AssemblyInfo>
12620     </Member>
12621     <Member MemberName="VirtualMode">
12622       <MemberSignature Language="C#" Value="public bool VirtualMode { set; get; }" />
12623       <MemberType>Property</MemberType>
12624       <Attributes>
12625         <Attribute>
12626           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
12627         </Attribute>
12628         <Attribute>
12629           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)</AttributeName>
12630         </Attribute>
12631       </Attributes>
12632       <ReturnValue>
12633         <ReturnType>System.Boolean</ReturnType>
12634       </ReturnValue>
12635       <Docs>
12636         <value>To be added.</value>
12637         <since version=".NET 2.0" />
12638         <remarks>
12639           <attribution license="cc4" from="Microsoft" modified="false" />
12640           <para>Virtual mode is designed for use with very large stores of data. When the <see cref="P:System.Windows.Forms.DataGridView.VirtualMode" /> property is true, you create a <see cref="T:System.Windows.Forms.DataGridView" /> with a set number of rows and columns and then handle the <see cref="E:System.Windows.Forms.DataGridView.CellValueNeeded" /> event to populate the cells. Virtual mode requires implementation of an underlying data cache to handle the population, editing, and deletion of <see cref="T:System.Windows.Forms.DataGridView" /> cells based on actions of the user. For more information about implementing virtual mode, see <format type="text/html"><a href="98236267-f08e-4918-bcf9-77acf050a3ca">How to: Implement Virtual Mode in the Windows Forms DataGridView Control</a></format>.</para>
12641           <para>You must use virtual mode to maintain the values of unbound columns when the <see cref="T:System.Windows.Forms.DataGridView" /> control is in bound mode. Sorting by unbound columns in bound mode is not supported. </para>
12642         </remarks>
12643         <summary>
12644           <attribution license="cc4" from="Microsoft" modified="false" />
12645           <para>Gets or sets a value indicating whether you have provided your own data-management operations for the <see cref="T:System.Windows.Forms.DataGridView" /> control. </para>
12646         </summary>
12647       </Docs>
12648       <AssemblyInfo>
12649         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12650       </AssemblyInfo>
12651     </Member>
12652     <Member MemberName="WndProc">
12653       <MemberSignature Language="C#" Value="protected override void WndProc (ref System.Windows.Forms.Message m);" />
12654       <MemberType>Method</MemberType>
12655       <ReturnValue>
12656         <ReturnType>System.Void</ReturnType>
12657       </ReturnValue>
12658       <Parameters>
12659         <Parameter Name="m" Type="System.Windows.Forms.Message&amp;" RefType="ref" />
12660       </Parameters>
12661       <Docs>
12662         <param name="m">To be added.</param>
12663         <summary>To be added.</summary>
12664         <remarks>To be added.</remarks>
12665         <since version=".NET 2.0" />
12666       </Docs>
12667       <AssemblyInfo>
12668         <AssemblyVersion>2.0.0.0</AssemblyVersion>
12669       </AssemblyInfo>
12670     </Member>
12671   </Members>
12672 </Type>