Rename Managed.Windows.Forms to System.Windows.Forms for consistency.
[mono.git] / mcs / class / System.Windows.Forms / Documentation / en / System.Windows.Forms / DataGridTableStyle.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <Type Name="DataGridTableStyle" FullName="System.Windows.Forms.DataGridTableStyle">
3   <TypeSignature Language="C#" Value="public class DataGridTableStyle : System.ComponentModel.Component, System.Windows.Forms.IDataGridEditingService" />
4   <AssemblyInfo>
5     <AssemblyName>System.Windows.Forms</AssemblyName>
6     <AssemblyVersion>1.0.5000.0</AssemblyVersion>
7     <AssemblyVersion>2.0.0.0</AssemblyVersion>
8   </AssemblyInfo>
9   <Base>
10     <BaseTypeName>System.ComponentModel.Component</BaseTypeName>
11   </Base>
12   <Interfaces>
13     <Interface>
14       <InterfaceName>System.Windows.Forms.IDataGridEditingService</InterfaceName>
15     </Interface>
16   </Interfaces>
17   <Attributes>
18     <Attribute>
19       <AttributeName>System.ComponentModel.ToolboxItem(false)</AttributeName>
20     </Attribute>
21     <Attribute>
22       <AttributeName>System.ComponentModel.DesignTimeVisible(false)</AttributeName>
23     </Attribute>
24   </Attributes>
25   <Docs>
26     <remarks>
27       <attribution license="cc4" from="Microsoft" modified="false" />
28       <para>The <see cref="T:System.Windows.Forms.DataGrid" /> control displays data in the form of a grid. The <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is a class that represents the drawn grid only. This grid should not be confused with the <see cref="T:System.Data.DataTable" /> class, which is a possible source of data for the grid. Instead, the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> strictly represents the grid as it is painted in the control. Therefore, through the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> you can control the appearance of the grid for each <see cref="T:System.Data.DataTable" />. To specify which <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is used when displaying data from a particular <see cref="T:System.Data.DataTable" />, set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> to the <see cref="P:System.Data.DataTable.TableName" /> of a <see cref="T:System.Data.DataTable" />.</para>
29       <para>The <see cref="T:System.Windows.Forms.GridTableStylesCollection" /> retrieved through the <see cref="P:System.Windows.Forms.DataGrid.TableStyles" /> property contains all the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects used by a <see cref="T:System.Windows.Forms.DataGrid" /> control. The collection can contain as many <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects as you need, however the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> of each must be unique. At run time, this allows you to substitute a different <see cref="T:System.Windows.Forms.DataGridTableStyle" /> for the same data, depending on the user's preference. To do this: </para>
30       <list type="ordered">
31         <item>
32           <para>Populate the <see cref="T:System.Windows.Forms.GridTableStylesCollection" /> with <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects. If a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> exists in the <see cref="T:System.Windows.Forms.GridTableStylesCollection" /> whose <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property value equals the <see cref="T:System.Data.DataTable" /> object's <see cref="P:System.Data.DataTable.TableName" /> property, the <see cref="T:System.Data.DataTable" /> is displayed with this <see cref="T:System.Windows.Forms.DataGridTableStyle" />. If no <see cref="T:System.Windows.Forms.DataGridTableStyle" /> exists with a matching <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" />, the <see cref="T:System.Data.DataTable" /> is displayed with the default style for data grid tables.</para>
33         </item>
34         <item>
35           <para>When a different grid style is needed, use the Item property to select the appropriate <see cref="T:System.Windows.Forms.DataGridTableStyle" /> (pass the <see cref="P:System.Data.DataTable.TableName" /> to the <see cref="P:System.Windows.Forms.GridTableStylesCollection.Item(System.Int32)" /> property) and set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> of the returned object to a new value.</para>
36         </item>
37         <item>
38           <para>Use the <see cref="P:System.Windows.Forms.GridTableStylesCollection.Item(System.Int32)" /> property to select the desired <see cref="T:System.Windows.Forms.DataGridTableStyle" />, and set its <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> to the <see cref="P:System.Data.DataTable.TableName" /> of the <see cref="T:System.Data.DataTable" />.</para>
39         </item>
40       </list>
41       <block subset="none" type="note">
42         <para>Always create <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> objects and add them to the <see cref="T:System.Windows.Forms.GridColumnStylesCollection" /> before adding <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects to the <see cref="T:System.Windows.Forms.GridTableStylesCollection" />. When you add an empty <see cref="T:System.Windows.Forms.DataGridTableStyle" /> with a valid <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> value to the collection, <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> objects are automatically generated for you. Consequently, an exception will be thrown if you try to add new <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> objects with duplicate <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> values to the <see cref="T:System.Windows.Forms.GridColumnStylesCollection" />.</para>
43       </block>
44       <para>To determine which <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is currently displayed, use the <see cref="P:System.Windows.Forms.DataGrid.DataSource" /> and <see cref="P:System.Windows.Forms.DataGrid.DataMember" /> properties of the <see cref="T:System.Windows.Forms.DataGrid" /> to return a <see cref="T:System.Windows.Forms.CurrencyManager" />. If the data source implements the <see cref="T:System.ComponentModel.ITypedList" /> interface, you can use the <see cref="M:System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])" /> method to return the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> of the current table. This is shown in the C# code below: </para>
45       <code> private void PrintCurrentListName(DataGrid myDataGrid){
46   CurrencyManager myCM = (CurrencyManager)
47   BindingContext[myDataGrid.DataSource, myDataGrid.DataMember];
48   IList myList = myCM.List;
49   ITypedList thisList = (ITypedList) myList;
50   Console.WriteLine(thisList.GetListName(null));
51  }</code>
52       <para>If the <see cref="T:System.Data.DataSet" /> contains <see cref="T:System.Data.DataTable" /> objects related through <see cref="T:System.Data.DataRelation" /> objects, and the currently displayed <see cref="T:System.Data.DataTable" /> is a child table, the <see cref="P:System.Windows.Forms.DataGrid.DataMember" /> will return a string in the form of TableName.RelationName (in the simplest case). If the <see cref="T:System.Data.DataTable" /> is further down in the hierarchy, the string will consist of the parent table's name followed by the necessary <see cref="P:System.Data.DataRelation.RelationName" /> values required to reach the table's level. For example, imagine three <see cref="T:System.Data.DataTable" /> objects in a hierarchical relationship named (top to bottom) Regions, Customers, and Orders, and two <see cref="T:System.Data.DataRelation" /> objects named RegionsToCustomers and CustomersToOrders, the <see cref="P:System.Windows.Forms.DataGrid.DataMember" /> property will return "Regions.RegionsToCustomers.CustomersToOrders". However, the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> will then be "Orders".</para>
53       <para>The collection of <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects is returned through the <see cref="P:System.Windows.Forms.DataGrid.TableStyles" /> property of the <see cref="T:System.Windows.Forms.DataGrid" />.</para>
54       <para>When a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is displayed, the settings for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> will override the settings for the <see cref="T:System.Windows.Forms.DataGrid" /> control. If a value is not set for a particular <see cref="T:System.Windows.Forms.DataGridTableStyle" /> property, the <see cref="T:System.Windows.Forms.DataGrid" /> control's value will be used instead. The following list shows the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> properties that can be set to override <see cref="T:System.Windows.Forms.DataGrid" /> control properties: </para>
55       <list type="bullet">
56         <item>
57           <para>
58             <see cref="P:System.Windows.Forms.DataGridTableStyle.AllowSorting" /> </para>
59         </item>
60         <item>
61           <para>
62             <see cref="P:System.Windows.Forms.DataGridTableStyle.AlternatingBackColor" /> </para>
63         </item>
64         <item>
65           <para>
66             <see cref="P:System.Windows.Forms.DataGridTableStyle.BackColor" /> </para>
67         </item>
68         <item>
69           <para>
70             <see cref="P:System.Windows.Forms.DataGridTableStyle.ColumnHeadersVisible" /> </para>
71         </item>
72         <item>
73           <para>
74             <see cref="P:System.Windows.Forms.DataGridTableStyle.ForeColor" /> </para>
75         </item>
76         <item>
77           <para>
78             <see cref="P:System.Windows.Forms.DataGridTableStyle.GridLineColor" /> </para>
79         </item>
80         <item>
81           <para>
82             <see cref="P:System.Windows.Forms.DataGridTableStyle.GridLineStyle" /> </para>
83         </item>
84         <item>
85           <para>
86             <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderBackColor" /> </para>
87         </item>
88         <item>
89           <para>
90             <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderFont" /> </para>
91         </item>
92         <item>
93           <para>
94             <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderForeColor" /> </para>
95         </item>
96         <item>
97           <para>
98             <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkColor" /> </para>
99         </item>
100         <item>
101           <para>
102             <see cref="P:System.Windows.Forms.DataGridTableStyle.PreferredColumnWidth" /> </para>
103         </item>
104         <item>
105           <para>
106             <see cref="P:System.Windows.Forms.DataGridTableStyle.PreferredRowHeight" /> </para>
107         </item>
108         <item>
109           <para>
110             <see cref="P:System.Windows.Forms.DataGridTableStyle.ReadOnly" /> </para>
111         </item>
112         <item>
113           <para>
114             <see cref="P:System.Windows.Forms.DataGridTableStyle.RowHeadersVisible" /> </para>
115         </item>
116         <item>
117           <para>
118             <see cref="P:System.Windows.Forms.DataGridTableStyle.RowHeaderWidth" /> </para>
119         </item>
120         <item>
121           <para>
122             <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionBackColor" /> </para>
123         </item>
124         <item>
125           <para>
126             <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionForeColor" /> </para>
127         </item>
128       </list>
129       <para>To bind the <see cref="T:System.Windows.Forms.DataGrid" /> to a strongly typed array of objects, the object type must contain public properties. To create a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> that displays the array, set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property to <paramref name="typename" /> where <paramref name="typename" /> is replaced by the name of the object type. Also note that the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property is case-sensitive; the type name must be matched exactly. See the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property for an example.</para>
130       <para>You can also bind the <see cref="T:System.Windows.Forms.DataGrid" /> to an <see cref="T:System.Collections.ArrayList" />. A feature of the <see cref="T:System.Collections.ArrayList" /> is that it can contain objects of multiple types, but the <see cref="T:System.Windows.Forms.DataGrid" /> can only bind to such a list when all items in the list are of the same type as the first item. This means that all objects must either be of the same type, or they must inherit from the same class as the first item in the list. For example, if the first item in a list is a <see cref="T:System.Windows.Forms.Control" />, the second item could be a <see cref="T:System.Windows.Forms.TextBox" /> (which inherits from <see cref="T:System.Windows.Forms.Control" />). If, on the other hand, the first item is a <see cref="T:System.Windows.Forms.TextBox" />, the second object cannot be a <see cref="T:System.Windows.Forms.Control" />. Further, the <see cref="T:System.Collections.ArrayList" /> must have items in it when it is bound and the objects in the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> must contain public properties. An empty <see cref="T:System.Collections.ArrayList" /> will result in an empty grid. When binding to an <see cref="T:System.Collections.ArrayList" />, set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> of the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> to "ArrayList" (the type name).</para>
131     </remarks>
132     <summary>
133       <attribution license="cc4" from="Microsoft" modified="false" />
134       <para>Represents the table drawn by the <see cref="T:System.Windows.Forms.DataGrid" /> control at run time.</para>
135     </summary>
136   </Docs>
137   <Members>
138     <Member MemberName=".ctor">
139       <MemberSignature Language="C#" Value="public DataGridTableStyle ();" />
140       <MemberType>Constructor</MemberType>
141       <Parameters />
142       <Docs>
143         <remarks>To be added.</remarks>
144         <summary>
145           <attribution license="cc4" from="Microsoft" modified="false" />
146           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> class.</para>
147         </summary>
148       </Docs>
149       <AssemblyInfo>
150         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
151         <AssemblyVersion>2.0.0.0</AssemblyVersion>
152       </AssemblyInfo>
153     </Member>
154     <Member MemberName=".ctor">
155       <MemberSignature Language="C#" Value="public DataGridTableStyle (bool isDefaultTableStyle);" />
156       <MemberType>Constructor</MemberType>
157       <Parameters>
158         <Parameter Name="isDefaultTableStyle" Type="System.Boolean" />
159       </Parameters>
160       <Docs>
161         <remarks>To be added.</remarks>
162         <summary>
163           <attribution license="cc4" from="Microsoft" modified="false" />
164           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> class using the specified value to determine whether the grid table is the default style.</para>
165         </summary>
166         <param name="isDefaultTableStyle">
167           <attribution license="cc4" from="Microsoft" modified="false" />true to specify the table as the default; otherwise, false. </param>
168       </Docs>
169       <AssemblyInfo>
170         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
171         <AssemblyVersion>2.0.0.0</AssemblyVersion>
172       </AssemblyInfo>
173     </Member>
174     <Member MemberName=".ctor">
175       <MemberSignature Language="C#" Value="public DataGridTableStyle (System.Windows.Forms.CurrencyManager listManager);" />
176       <MemberType>Constructor</MemberType>
177       <Parameters>
178         <Parameter Name="listManager" Type="System.Windows.Forms.CurrencyManager" />
179       </Parameters>
180       <Docs>
181         <remarks>To be added.</remarks>
182         <summary>
183           <attribution license="cc4" from="Microsoft" modified="false" />
184           <para>Initializes a new instance of the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> class with the specified <see cref="T:System.Windows.Forms.CurrencyManager" />.</para>
185         </summary>
186         <param name="listManager">
187           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.CurrencyManager" /> to use. </param>
188       </Docs>
189       <AssemblyInfo>
190         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
191         <AssemblyVersion>2.0.0.0</AssemblyVersion>
192       </AssemblyInfo>
193     </Member>
194     <Member MemberName="AllowSorting">
195       <MemberSignature Language="C#" Value="public bool AllowSorting { set; get; }" />
196       <MemberType>Property</MemberType>
197       <Attributes>
198         <Attribute>
199           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
200         </Attribute>
201       </Attributes>
202       <ReturnValue>
203         <ReturnType>System.Boolean</ReturnType>
204       </ReturnValue>
205       <Docs>
206         <value>To be added.</value>
207         <remarks>
208           <attribution license="cc4" from="Microsoft" modified="false" />
209           <para>When the <see cref="P:System.Windows.Forms.DataGridTableStyle.AllowSorting" /> property is set to true, a triangle appears in each column header indicating the direction of the sort. The user can click on any column header to sort the grid by that column. Clicking the column a second time changes the direction of the sort.</para>
210           <para>This property overrides the <see cref="P:System.Windows.Forms.DataGrid.AllowSorting" /> property.</para>
211         </remarks>
212         <summary>
213           <attribution license="cc4" from="Microsoft" modified="false" />
214           <para>Indicates whether sorting is allowed on the grid table when this <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is used.</para>
215         </summary>
216       </Docs>
217       <AssemblyInfo>
218         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
219         <AssemblyVersion>2.0.0.0</AssemblyVersion>
220       </AssemblyInfo>
221     </Member>
222     <Member MemberName="AllowSortingChanged">
223       <MemberSignature Language="C#" Value="public event EventHandler AllowSortingChanged;" />
224       <MemberType>Event</MemberType>
225       <ReturnValue>
226         <ReturnType>System.EventHandler</ReturnType>
227       </ReturnValue>
228       <Docs>
229         <remarks>
230           <attribution license="cc4" from="Microsoft" modified="false" />
231           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
232         </remarks>
233         <summary>
234           <attribution license="cc4" from="Microsoft" modified="false" />
235           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.AllowSorting" /> property value changes.</para>
236         </summary>
237       </Docs>
238       <AssemblyInfo>
239         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
240         <AssemblyVersion>2.0.0.0</AssemblyVersion>
241       </AssemblyInfo>
242     </Member>
243     <Member MemberName="AlternatingBackColor">
244       <MemberSignature Language="C#" Value="public System.Drawing.Color AlternatingBackColor { set; get; }" />
245       <MemberType>Property</MemberType>
246       <ReturnValue>
247         <ReturnType>System.Drawing.Color</ReturnType>
248       </ReturnValue>
249       <Docs>
250         <value>To be added.</value>
251         <remarks>To be added.</remarks>
252         <summary>
253           <attribution license="cc4" from="Microsoft" modified="false" />
254           <para>Gets or sets the background color of odd-numbered rows of the grid.</para>
255         </summary>
256       </Docs>
257       <AssemblyInfo>
258         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
259         <AssemblyVersion>2.0.0.0</AssemblyVersion>
260       </AssemblyInfo>
261     </Member>
262     <Member MemberName="AlternatingBackColorChanged">
263       <MemberSignature Language="C#" Value="public event EventHandler AlternatingBackColorChanged;" />
264       <MemberType>Event</MemberType>
265       <ReturnValue>
266         <ReturnType>System.EventHandler</ReturnType>
267       </ReturnValue>
268       <Docs>
269         <remarks>
270           <attribution license="cc4" from="Microsoft" modified="false" />
271           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
272         </remarks>
273         <summary>
274           <attribution license="cc4" from="Microsoft" modified="false" />
275           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.AlternatingBackColor" /> value changes.</para>
276         </summary>
277       </Docs>
278       <AssemblyInfo>
279         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
280         <AssemblyVersion>2.0.0.0</AssemblyVersion>
281       </AssemblyInfo>
282     </Member>
283     <Member MemberName="BackColor">
284       <MemberSignature Language="C#" Value="public System.Drawing.Color BackColor { set; get; }" />
285       <MemberType>Property</MemberType>
286       <ReturnValue>
287         <ReturnType>System.Drawing.Color</ReturnType>
288       </ReturnValue>
289       <Docs>
290         <value>To be added.</value>
291         <remarks>
292           <attribution license="cc4" from="Microsoft" modified="false" />
293           <para>The <see cref="P:System.Windows.Forms.DataGridTableStyle.AlternatingBackColor" /> property can also be set to create a ledger-like appearance.</para>
294         </remarks>
295         <summary>
296           <attribution license="cc4" from="Microsoft" modified="false" />
297           <para>Gets or sets the background color of even-numbered rows of the grid.</para>
298         </summary>
299       </Docs>
300       <AssemblyInfo>
301         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
302         <AssemblyVersion>2.0.0.0</AssemblyVersion>
303       </AssemblyInfo>
304     </Member>
305     <Member MemberName="BackColorChanged">
306       <MemberSignature Language="C#" Value="public event EventHandler BackColorChanged;" />
307       <MemberType>Event</MemberType>
308       <ReturnValue>
309         <ReturnType>System.EventHandler</ReturnType>
310       </ReturnValue>
311       <Docs>
312         <remarks>
313           <attribution license="cc4" from="Microsoft" modified="false" />
314           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
315         </remarks>
316         <summary>
317           <attribution license="cc4" from="Microsoft" modified="false" />
318           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.BackColor" /> value changes.</para>
319         </summary>
320       </Docs>
321       <AssemblyInfo>
322         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
323         <AssemblyVersion>2.0.0.0</AssemblyVersion>
324       </AssemblyInfo>
325     </Member>
326     <Member MemberName="BeginEdit">
327       <MemberSignature Language="C#" Value="public bool BeginEdit (System.Windows.Forms.DataGridColumnStyle gridColumn, int rowNumber);" />
328       <MemberType>Method</MemberType>
329       <ReturnValue>
330         <ReturnType>System.Boolean</ReturnType>
331       </ReturnValue>
332       <Parameters>
333         <Parameter Name="gridColumn" Type="System.Windows.Forms.DataGridColumnStyle" />
334         <Parameter Name="rowNumber" Type="System.Int32" />
335       </Parameters>
336       <Docs>
337         <remarks>
338           <attribution license="cc4" from="Microsoft" modified="false" />
339           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.BeginEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32)" /> method is intended to notify the <see cref="T:System.Windows.Forms.DataGrid" /> control when the user has begun an editing operation. When the control is in edit mode, multiple edits can be made and the constraints will be temporarily unenforced.</para>
340           <para>Call the <see cref="M:System.Windows.Forms.DataGridTableStyle.EndEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32,System.Boolean)" /> method to quit the edit mode.</para>
341         </remarks>
342         <summary>
343           <attribution license="cc4" from="Microsoft" modified="false" />
344           <para>Requests an edit operation.</para>
345         </summary>
346         <returns>
347           <attribution license="cc4" from="Microsoft" modified="false" />
348           <para>true, if the operation succeeds; otherwise, false.</para>
349         </returns>
350         <param name="gridColumn">
351           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> to edit. </param>
352         <param name="rowNumber">
353           <attribution license="cc4" from="Microsoft" modified="false" />The number of the edited row. </param>
354       </Docs>
355       <AssemblyInfo>
356         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
357         <AssemblyVersion>2.0.0.0</AssemblyVersion>
358       </AssemblyInfo>
359     </Member>
360     <Member MemberName="ColumnHeadersVisible">
361       <MemberSignature Language="C#" Value="public bool ColumnHeadersVisible { set; get; }" />
362       <MemberType>Property</MemberType>
363       <Attributes>
364         <Attribute>
365           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
366         </Attribute>
367       </Attributes>
368       <ReturnValue>
369         <ReturnType>System.Boolean</ReturnType>
370       </ReturnValue>
371       <Docs>
372         <value>To be added.</value>
373         <remarks>
374           <attribution license="cc4" from="Microsoft" modified="false" />
375           <para>To set header caption text, use the <see cref="P:System.Windows.Forms.DataGridColumnStyle.HeaderText" /> property of the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> class.</para>
376         </remarks>
377         <summary>
378           <attribution license="cc4" from="Microsoft" modified="false" />
379           <para>Gets or sets a value indicating whether column headers are visible.</para>
380         </summary>
381       </Docs>
382       <AssemblyInfo>
383         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
384         <AssemblyVersion>2.0.0.0</AssemblyVersion>
385       </AssemblyInfo>
386     </Member>
387     <Member MemberName="ColumnHeadersVisibleChanged">
388       <MemberSignature Language="C#" Value="public event EventHandler ColumnHeadersVisibleChanged;" />
389       <MemberType>Event</MemberType>
390       <ReturnValue>
391         <ReturnType>System.EventHandler</ReturnType>
392       </ReturnValue>
393       <Docs>
394         <remarks>
395           <attribution license="cc4" from="Microsoft" modified="false" />
396           <para>To set the caption text for each column in a grid, set the <see cref="P:System.Windows.Forms.DataGridColumnStyle.HeaderText" /> property of the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> class.</para>
397           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
398         </remarks>
399         <summary>
400           <attribution license="cc4" from="Microsoft" modified="false" />
401           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.ColumnHeadersVisible" /> value changes.</para>
402         </summary>
403       </Docs>
404       <AssemblyInfo>
405         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
406         <AssemblyVersion>2.0.0.0</AssemblyVersion>
407       </AssemblyInfo>
408     </Member>
409     <Member MemberName="CreateGridColumn">
410       <MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.DataGridColumnStyle CreateGridColumn (System.ComponentModel.PropertyDescriptor prop);" />
411       <MemberType>Method</MemberType>
412       <AssemblyInfo>
413         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
414         <AssemblyVersion>2.0.0.0</AssemblyVersion>
415       </AssemblyInfo>
416       <ReturnValue>
417         <ReturnType>System.Windows.Forms.DataGridColumnStyle</ReturnType>
418       </ReturnValue>
419       <Parameters>
420         <Parameter Name="prop" Type="System.ComponentModel.PropertyDescriptor" />
421       </Parameters>
422       <Docs>
423         <remarks>To be added.</remarks>
424         <summary>
425           <attribution license="cc4" from="Microsoft" modified="false" />
426           <para>Creates a <see cref="T:System.Windows.Forms.DataGridColumnStyle" />, using the specified property descriptor.</para>
427         </summary>
428         <returns>
429           <attribution license="cc4" from="Microsoft" modified="false" />
430           <para>The newly created <see cref="T:System.Windows.Forms.DataGridColumnStyle" />.</para>
431         </returns>
432         <param name="prop">
433           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ComponentModel.PropertyDescriptor" /> used to create the column style object. </param>
434       </Docs>
435     </Member>
436     <Member MemberName="CreateGridColumn">
437       <MemberSignature Language="C#" Value="protected virtual System.Windows.Forms.DataGridColumnStyle CreateGridColumn (System.ComponentModel.PropertyDescriptor prop, bool isDefault);" />
438       <MemberType>Method</MemberType>
439       <AssemblyInfo>
440         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
441         <AssemblyVersion>2.0.0.0</AssemblyVersion>
442       </AssemblyInfo>
443       <ReturnValue>
444         <ReturnType>System.Windows.Forms.DataGridColumnStyle</ReturnType>
445       </ReturnValue>
446       <Parameters>
447         <Parameter Name="prop" Type="System.ComponentModel.PropertyDescriptor" />
448         <Parameter Name="isDefault" Type="System.Boolean" />
449       </Parameters>
450       <Docs>
451         <remarks>To be added.</remarks>
452         <summary>
453           <attribution license="cc4" from="Microsoft" modified="false" />
454           <para>Creates a <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> using the specified property descriptor. Specifies whether the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> is a default column style.</para>
455         </summary>
456         <returns>
457           <attribution license="cc4" from="Microsoft" modified="false" />
458           <para>The newly created <see cref="T:System.Windows.Forms.DataGridColumnStyle" />.</para>
459         </returns>
460         <param name="prop">
461           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.ComponentModel.PropertyDescriptor" /> used to create the column style object. </param>
462         <param name="isDefault">
463           <attribution license="cc4" from="Microsoft" modified="false" />Specifies whether the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> is a default column style. This parameter is read-only. </param>
464       </Docs>
465     </Member>
466     <Member MemberName="DataGrid">
467       <MemberSignature Language="C#" Value="public virtual System.Windows.Forms.DataGrid DataGrid { set; get; }" />
468       <MemberType>Property</MemberType>
469       <Attributes>
470         <Attribute>
471           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
472         </Attribute>
473       </Attributes>
474       <ReturnValue>
475         <ReturnType>System.Windows.Forms.DataGrid</ReturnType>
476       </ReturnValue>
477       <Docs>
478         <value>To be added.</value>
479         <remarks>
480           <attribution license="cc4" from="Microsoft" modified="false" />
481           <para>The <see cref="T:System.Windows.Forms.DataGrid" /> control displays data in the form of a grid. The <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is an object that represents the drawn grid. The <see cref="T:System.Windows.Forms.DataGrid" /> property returns a reference to the control that is displaying the grid.</para>
482           <para>The <see cref="P:System.Windows.Forms.DataGridTableStyle.DataGrid" /> property is set when a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is added to a <see cref="T:System.Windows.Forms.DataGrid" /> control's <see cref="T:System.Windows.Forms.GridTableStylesCollection" />. You should not try to set this property unless you are overriding it and creating a designer for a user control that incorporates the <see cref="T:System.Windows.Forms.DataGrid" /> control.</para>
483         </remarks>
484         <summary>
485           <attribution license="cc4" from="Microsoft" modified="false" />
486           <para>Gets or sets the <see cref="T:System.Windows.Forms.DataGrid" /> control for the drawn table.</para>
487         </summary>
488       </Docs>
489       <AssemblyInfo>
490         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
491         <AssemblyVersion>2.0.0.0</AssemblyVersion>
492       </AssemblyInfo>
493     </Member>
494     <Member MemberName="DefaultTableStyle">
495       <MemberSignature Language="C#" Value="public static readonly System.Windows.Forms.DataGridTableStyle DefaultTableStyle;" />
496       <MemberType>Field</MemberType>
497       <ReturnValue>
498         <ReturnType>System.Windows.Forms.DataGridTableStyle</ReturnType>
499       </ReturnValue>
500       <Docs>
501         <remarks>To be added.</remarks>
502         <summary>
503           <attribution license="cc4" from="Microsoft" modified="false" />
504           <para>Gets the default table style.</para>
505         </summary>
506       </Docs>
507       <AssemblyInfo>
508         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
509         <AssemblyVersion>2.0.0.0</AssemblyVersion>
510       </AssemblyInfo>
511     </Member>
512     <Member MemberName="Dispose">
513       <MemberSignature Language="C#" Value="protected override void Dispose (bool disposing);" />
514       <MemberType>Method</MemberType>
515       <ReturnValue>
516         <ReturnType>System.Void</ReturnType>
517       </ReturnValue>
518       <Parameters>
519         <Parameter Name="disposing" Type="System.Boolean" />
520       </Parameters>
521       <Docs>
522         <param name="disposing">To be added.</param>
523         <remarks>
524           <attribution license="cc4" from="Microsoft" modified="false" />
525           <para>The method calls the <see cref="M:System.Windows.Forms.DataGridTableStyle.Dispose(System.Boolean)" /> method on each <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> contained by the collection before calling <see cref="M:System.Windows.Forms.DataGrid.Dispose(System.Boolean)" /> on the grid itself.</para>
526         </remarks>
527         <summary>
528           <attribution license="cc4" from="Microsoft" modified="false" />
529           <para>Disposes of the resources (other than memory) used by the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
530         </summary>
531       </Docs>
532       <AssemblyInfo>
533         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
534         <AssemblyVersion>2.0.0.0</AssemblyVersion>
535       </AssemblyInfo>
536     </Member>
537     <Member MemberName="EndEdit">
538       <MemberSignature Language="C#" Value="public bool EndEdit (System.Windows.Forms.DataGridColumnStyle gridColumn, int rowNumber, bool shouldAbort);" />
539       <MemberType>Method</MemberType>
540       <ReturnValue>
541         <ReturnType>System.Boolean</ReturnType>
542       </ReturnValue>
543       <Parameters>
544         <Parameter Name="gridColumn" Type="System.Windows.Forms.DataGridColumnStyle" />
545         <Parameter Name="rowNumber" Type="System.Int32" />
546         <Parameter Name="shouldAbort" Type="System.Boolean" />
547       </Parameters>
548       <Docs>
549         <remarks>
550           <attribution license="cc4" from="Microsoft" modified="false" />
551           <para>Similar to the <see cref="M:System.Windows.Forms.DataGridTableStyle.BeginEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32)" /> method, the <see cref="M:System.Windows.Forms.DataGridTableStyle.EndEdit(System.Windows.Forms.DataGridColumnStyle,System.Int32,System.Boolean)" /> method is intended to notify the <see cref="T:System.Windows.Forms.DataGrid" /> when an edit operation is ending.</para>
552         </remarks>
553         <summary>
554           <attribution license="cc4" from="Microsoft" modified="false" />
555           <para>Requests an end to an edit operation.</para>
556         </summary>
557         <returns>
558           <attribution license="cc4" from="Microsoft" modified="false" />
559           <para>true if the edit operation ends successfully; otherwise, false.</para>
560         </returns>
561         <param name="gridColumn">
562           <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> to edit. </param>
563         <param name="rowNumber">
564           <attribution license="cc4" from="Microsoft" modified="false" />The number of the edited row. </param>
565         <param name="shouldAbort">
566           <attribution license="cc4" from="Microsoft" modified="false" />A value indicating whether the operation should be stopped; true if it should stop; otherwise, false. </param>
567       </Docs>
568       <AssemblyInfo>
569         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
570         <AssemblyVersion>2.0.0.0</AssemblyVersion>
571       </AssemblyInfo>
572     </Member>
573     <Member MemberName="ForeColor">
574       <MemberSignature Language="C#" Value="public System.Drawing.Color ForeColor { set; get; }" />
575       <MemberType>Property</MemberType>
576       <ReturnValue>
577         <ReturnType>System.Drawing.Color</ReturnType>
578       </ReturnValue>
579       <Docs>
580         <value>To be added.</value>
581         <remarks>To be added.</remarks>
582         <summary>
583           <attribution license="cc4" from="Microsoft" modified="false" />
584           <para>Gets or sets the foreground color of the grid table.</para>
585         </summary>
586       </Docs>
587       <AssemblyInfo>
588         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
589         <AssemblyVersion>2.0.0.0</AssemblyVersion>
590       </AssemblyInfo>
591     </Member>
592     <Member MemberName="ForeColorChanged">
593       <MemberSignature Language="C#" Value="public event EventHandler ForeColorChanged;" />
594       <MemberType>Event</MemberType>
595       <ReturnValue>
596         <ReturnType>System.EventHandler</ReturnType>
597       </ReturnValue>
598       <Docs>
599         <remarks>
600           <attribution license="cc4" from="Microsoft" modified="false" />
601           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
602         </remarks>
603         <summary>
604           <attribution license="cc4" from="Microsoft" modified="false" />
605           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.ForeColor" /> value changes.</para>
606         </summary>
607       </Docs>
608       <AssemblyInfo>
609         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
610         <AssemblyVersion>2.0.0.0</AssemblyVersion>
611       </AssemblyInfo>
612     </Member>
613     <Member MemberName="GridColumnStyles">
614       <MemberSignature Language="C#" Value="public virtual System.Windows.Forms.GridColumnStylesCollection GridColumnStyles { get; }" />
615       <MemberType>Property</MemberType>
616       <Attributes>
617         <Attribute>
618           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
619         </Attribute>
620         <Attribute>
621           <AttributeName>System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)</AttributeName>
622         </Attribute>
623       </Attributes>
624       <ReturnValue>
625         <ReturnType>System.Windows.Forms.GridColumnStylesCollection</ReturnType>
626       </ReturnValue>
627       <Docs>
628         <value>To be added.</value>
629         <remarks>
630           <attribution license="cc4" from="Microsoft" modified="false" />
631           <para>The <see cref="T:System.Windows.Forms.GridColumnStylesCollection" /> returned by the <see cref="P:System.Windows.Forms.DataGridTableStyle.GridColumnStyles" /> property allows you to create a customized set of column styles. For each <see cref="T:System.Data.DataColumn" /> in a <see cref="T:System.Data.DataTable" />, set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> of a <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> to the <see cref="P:System.Data.DataColumn.ColumnName" />. That column style will automatically be used when this <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is displayed.</para>
632           <para>If you create a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> without adding any <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> objects to the <see cref="T:System.Windows.Forms.GridColumnStylesCollection" />, a collection of <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> objects will be created automatically when a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> with a valid <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> is added to the <see cref="T:System.Windows.Forms.GridTableStylesCollection" />. An exception will be thrown if you attempt to add <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> objects with duplicate <see cref="P:System.Windows.Forms.DataGridColumnStyle.MappingName" /> values to the collection.</para>
633         </remarks>
634         <summary>
635           <attribution license="cc4" from="Microsoft" modified="false" />
636           <para>Gets the collection of columns drawn for this table.</para>
637         </summary>
638       </Docs>
639       <AssemblyInfo>
640         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
641         <AssemblyVersion>2.0.0.0</AssemblyVersion>
642       </AssemblyInfo>
643     </Member>
644     <Member MemberName="GridLineColor">
645       <MemberSignature Language="C#" Value="public System.Drawing.Color GridLineColor { set; get; }" />
646       <MemberType>Property</MemberType>
647       <ReturnValue>
648         <ReturnType>System.Drawing.Color</ReturnType>
649       </ReturnValue>
650       <Docs>
651         <value>To be added.</value>
652         <remarks>To be added.</remarks>
653         <summary>
654           <attribution license="cc4" from="Microsoft" modified="false" />
655           <para>Gets or sets the color of grid lines.</para>
656         </summary>
657       </Docs>
658       <AssemblyInfo>
659         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
660         <AssemblyVersion>2.0.0.0</AssemblyVersion>
661       </AssemblyInfo>
662     </Member>
663     <Member MemberName="GridLineColorChanged">
664       <MemberSignature Language="C#" Value="public event EventHandler GridLineColorChanged;" />
665       <MemberType>Event</MemberType>
666       <ReturnValue>
667         <ReturnType>System.EventHandler</ReturnType>
668       </ReturnValue>
669       <Docs>
670         <remarks>
671           <attribution license="cc4" from="Microsoft" modified="false" />
672           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
673         </remarks>
674         <summary>
675           <attribution license="cc4" from="Microsoft" modified="false" />
676           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.GridLineColor" /> value changes.</para>
677         </summary>
678       </Docs>
679       <AssemblyInfo>
680         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
681         <AssemblyVersion>2.0.0.0</AssemblyVersion>
682       </AssemblyInfo>
683     </Member>
684     <Member MemberName="GridLineStyle">
685       <MemberSignature Language="C#" Value="public System.Windows.Forms.DataGridLineStyle GridLineStyle { set; get; }" />
686       <MemberType>Property</MemberType>
687       <Attributes>
688         <Attribute>
689           <AttributeName>System.ComponentModel.DefaultValue(System.Windows.Forms.DataGridLineStyle.Solid)</AttributeName>
690         </Attribute>
691       </Attributes>
692       <ReturnValue>
693         <ReturnType>System.Windows.Forms.DataGridLineStyle</ReturnType>
694       </ReturnValue>
695       <Docs>
696         <value>To be added.</value>
697         <remarks>To be added.</remarks>
698         <summary>
699           <attribution license="cc4" from="Microsoft" modified="false" />
700           <para>Gets or sets the style of grid lines.</para>
701         </summary>
702       </Docs>
703       <AssemblyInfo>
704         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
705         <AssemblyVersion>2.0.0.0</AssemblyVersion>
706       </AssemblyInfo>
707     </Member>
708     <Member MemberName="GridLineStyleChanged">
709       <MemberSignature Language="C#" Value="public event EventHandler GridLineStyleChanged;" />
710       <MemberType>Event</MemberType>
711       <ReturnValue>
712         <ReturnType>System.EventHandler</ReturnType>
713       </ReturnValue>
714       <Docs>
715         <remarks>
716           <attribution license="cc4" from="Microsoft" modified="false" />
717           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
718         </remarks>
719         <summary>
720           <attribution license="cc4" from="Microsoft" modified="false" />
721           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.GridLineStyle" /> value changes.</para>
722         </summary>
723       </Docs>
724       <AssemblyInfo>
725         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
726         <AssemblyVersion>2.0.0.0</AssemblyVersion>
727       </AssemblyInfo>
728     </Member>
729     <Member MemberName="HeaderBackColor">
730       <MemberSignature Language="C#" Value="public System.Drawing.Color HeaderBackColor { set; get; }" />
731       <MemberType>Property</MemberType>
732       <ReturnValue>
733         <ReturnType>System.Drawing.Color</ReturnType>
734       </ReturnValue>
735       <Docs>
736         <value>To be added.</value>
737         <remarks>To be added.</remarks>
738         <summary>
739           <attribution license="cc4" from="Microsoft" modified="false" />
740           <para>Gets or sets the background color of headers.</para>
741         </summary>
742       </Docs>
743       <AssemblyInfo>
744         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
745         <AssemblyVersion>2.0.0.0</AssemblyVersion>
746       </AssemblyInfo>
747     </Member>
748     <Member MemberName="HeaderBackColorChanged">
749       <MemberSignature Language="C#" Value="public event EventHandler HeaderBackColorChanged;" />
750       <MemberType>Event</MemberType>
751       <ReturnValue>
752         <ReturnType>System.EventHandler</ReturnType>
753       </ReturnValue>
754       <Docs>
755         <remarks>To be added.</remarks>
756         <summary>
757           <attribution license="cc4" from="Microsoft" modified="false" />
758           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderBackColor" /> value changes.</para>
759         </summary>
760       </Docs>
761       <AssemblyInfo>
762         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
763         <AssemblyVersion>2.0.0.0</AssemblyVersion>
764       </AssemblyInfo>
765     </Member>
766     <Member MemberName="HeaderFont">
767       <MemberSignature Language="C#" Value="public System.Drawing.Font HeaderFont { set; get; }" />
768       <MemberType>Property</MemberType>
769       <Attributes>
770         <Attribute>
771           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
772         </Attribute>
773         <Attribute>
774           <AttributeName>System.ComponentModel.AmbientValue(null)</AttributeName>
775         </Attribute>
776       </Attributes>
777       <ReturnValue>
778         <ReturnType>System.Drawing.Font</ReturnType>
779       </ReturnValue>
780       <Docs>
781         <value>To be added.</value>
782         <remarks>
783           <attribution license="cc4" from="Microsoft" modified="false" />
784           <para>To set header caption text, use the <see cref="P:System.Windows.Forms.DataGridColumnStyle.HeaderText" /> property of the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> class.</para>
785         </remarks>
786         <summary>
787           <attribution license="cc4" from="Microsoft" modified="false" />
788           <para>Gets or sets the font used for header captions.</para>
789         </summary>
790       </Docs>
791       <AssemblyInfo>
792         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
793         <AssemblyVersion>2.0.0.0</AssemblyVersion>
794       </AssemblyInfo>
795     </Member>
796     <Member MemberName="HeaderFontChanged">
797       <MemberSignature Language="C#" Value="public event EventHandler HeaderFontChanged;" />
798       <MemberType>Event</MemberType>
799       <ReturnValue>
800         <ReturnType>System.EventHandler</ReturnType>
801       </ReturnValue>
802       <Docs>
803         <remarks>
804           <attribution license="cc4" from="Microsoft" modified="false" />
805           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
806         </remarks>
807         <summary>
808           <attribution license="cc4" from="Microsoft" modified="false" />
809           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderFont" /> value changes.</para>
810         </summary>
811       </Docs>
812       <AssemblyInfo>
813         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
814         <AssemblyVersion>2.0.0.0</AssemblyVersion>
815       </AssemblyInfo>
816     </Member>
817     <Member MemberName="HeaderForeColor">
818       <MemberSignature Language="C#" Value="public System.Drawing.Color HeaderForeColor { set; get; }" />
819       <MemberType>Property</MemberType>
820       <ReturnValue>
821         <ReturnType>System.Drawing.Color</ReturnType>
822       </ReturnValue>
823       <Docs>
824         <value>To be added.</value>
825         <remarks>To be added.</remarks>
826         <summary>
827           <attribution license="cc4" from="Microsoft" modified="false" />
828           <para>Gets or sets the foreground color of headers.</para>
829         </summary>
830       </Docs>
831       <AssemblyInfo>
832         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
833         <AssemblyVersion>2.0.0.0</AssemblyVersion>
834       </AssemblyInfo>
835     </Member>
836     <Member MemberName="HeaderForeColorChanged">
837       <MemberSignature Language="C#" Value="public event EventHandler HeaderForeColorChanged;" />
838       <MemberType>Event</MemberType>
839       <ReturnValue>
840         <ReturnType>System.EventHandler</ReturnType>
841       </ReturnValue>
842       <Docs>
843         <remarks>
844           <attribution license="cc4" from="Microsoft" modified="false" />
845           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
846         </remarks>
847         <summary>
848           <attribution license="cc4" from="Microsoft" modified="false" />
849           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderForeColor" /> value changes.</para>
850         </summary>
851       </Docs>
852       <AssemblyInfo>
853         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
854         <AssemblyVersion>2.0.0.0</AssemblyVersion>
855       </AssemblyInfo>
856     </Member>
857     <Member MemberName="LinkColor">
858       <MemberSignature Language="C#" Value="public System.Drawing.Color LinkColor { set; get; }" />
859       <MemberType>Property</MemberType>
860       <ReturnValue>
861         <ReturnType>System.Drawing.Color</ReturnType>
862       </ReturnValue>
863       <Docs>
864         <value>To be added.</value>
865         <remarks>To be added.</remarks>
866         <summary>
867           <attribution license="cc4" from="Microsoft" modified="false" />
868           <para>Gets or sets the color of link text.</para>
869         </summary>
870       </Docs>
871       <AssemblyInfo>
872         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
873         <AssemblyVersion>2.0.0.0</AssemblyVersion>
874       </AssemblyInfo>
875     </Member>
876     <Member MemberName="LinkColorChanged">
877       <MemberSignature Language="C#" Value="public event EventHandler LinkColorChanged;" />
878       <MemberType>Event</MemberType>
879       <ReturnValue>
880         <ReturnType>System.EventHandler</ReturnType>
881       </ReturnValue>
882       <Docs>
883         <remarks>
884           <attribution license="cc4" from="Microsoft" modified="false" />
885           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
886         </remarks>
887         <summary>
888           <attribution license="cc4" from="Microsoft" modified="false" />
889           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkColor" /> value changes.</para>
890         </summary>
891       </Docs>
892       <AssemblyInfo>
893         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
894         <AssemblyVersion>2.0.0.0</AssemblyVersion>
895       </AssemblyInfo>
896     </Member>
897     <Member MemberName="LinkHoverColor">
898       <MemberSignature Language="C#" Value="public System.Drawing.Color LinkHoverColor { set; get; }" />
899       <MemberType>Property</MemberType>
900       <Attributes>
901         <Attribute>
902           <AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
903         </Attribute>
904         <Attribute>
905           <AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
906         </Attribute>
907       </Attributes>
908       <ReturnValue>
909         <ReturnType>System.Drawing.Color</ReturnType>
910       </ReturnValue>
911       <Docs>
912         <value>To be added.</value>
913         <remarks>To be added.</remarks>
914         <summary>
915           <attribution license="cc4" from="Microsoft" modified="false" />
916           <para>Gets or sets the color displayed when hovering over link text.</para>
917         </summary>
918       </Docs>
919       <AssemblyInfo>
920         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
921         <AssemblyVersion>2.0.0.0</AssemblyVersion>
922       </AssemblyInfo>
923     </Member>
924     <Member MemberName="LinkHoverColorChanged">
925       <MemberSignature Language="C#" Value="public event EventHandler LinkHoverColorChanged;" />
926       <MemberType>Event</MemberType>
927       <ReturnValue>
928         <ReturnType>System.EventHandler</ReturnType>
929       </ReturnValue>
930       <Docs>
931         <remarks>
932           <attribution license="cc4" from="Microsoft" modified="false" />
933           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
934         </remarks>
935         <summary>
936           <attribution license="cc4" from="Microsoft" modified="false" />
937           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkHoverColor" /> value changes.</para>
938         </summary>
939       </Docs>
940       <AssemblyInfo>
941         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
942         <AssemblyVersion>2.0.0.0</AssemblyVersion>
943       </AssemblyInfo>
944     </Member>
945     <Member MemberName="MappingName">
946       <MemberSignature Language="C#" Value="public string MappingName { set; get; }" />
947       <MemberType>Property</MemberType>
948       <Attributes>
949         <Attribute>
950           <AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
951         </Attribute>
952         <Attribute>
953           <AttributeName>System.ComponentModel.Editor("System.Windows.Forms.Design.DataGridTableStyleMappingNameEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(System.Drawing.Design.UITypeEditor))</AttributeName>
954         </Attribute>
955       </Attributes>
956       <ReturnValue>
957         <ReturnType>System.String</ReturnType>
958       </ReturnValue>
959       <Docs>
960         <value>To be added.</value>
961         <remarks>
962           <attribution license="cc4" from="Microsoft" modified="false" />
963           <para>To bind the <see cref="T:System.Windows.Forms.DataGrid" /> to a strongly typed array of objects, the object type must contain public properties. To create a <see cref="T:System.Windows.Forms.DataGridTableStyle" /> that displays the array, set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property to <paramref name="typename" /> where <paramref name="typename" /> is replaced by the name of the object type. Also note that the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property is case-sensitive; the type name must be matched exactly. See the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> property for an example.</para>
964           <para>You can also bind the <see cref="T:System.Windows.Forms.DataGrid" /> to an <see cref="T:System.Collections.ArrayList" />. A feature of the <see cref="T:System.Collections.ArrayList" /> is that it can contain objects of multiple types, but the <see cref="T:System.Windows.Forms.DataGrid" /> can only bind to such a list when all items in the list are of the same type as the first item. This means that all objects must either be of the same type, or they must inherit from the same class as the first item in the list. For example, if the first item in a list is a <see cref="T:System.Windows.Forms.Control" />, the second item could be a <see cref="T:System.Windows.Forms.TextBox" /> (which inherits from <see cref="T:System.Windows.Forms.Control" />). If, on the other hand, the first item is a <see cref="T:System.Windows.Forms.TextBox" />, the second object cannot be a <see cref="T:System.Windows.Forms.Control" />. Further, the <see cref="T:System.Collections.ArrayList" /> must have items in it when it is bound. An empty <see cref="T:System.Collections.ArrayList" /> will result in an empty grid. When binding to an <see cref="T:System.Collections.ArrayList" />, set the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> of the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> to "ArrayList" (the type name).</para>
965           <para>The default is the name of the list managed by the <see cref="T:System.Windows.Forms.CurrencyManager" /> for this grid. The <see cref="T:System.Windows.Forms.CurrencyManager" /> for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> is set using the <see cref="M:System.Windows.Forms.DataGridTableStyle.#ctor" /> constructor.</para>
966           <para>The <see cref="E:System.Windows.Forms.DataGridTableStyle.MappingNameChanged" /> event occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> value changes.</para>
967         </remarks>
968         <summary>
969           <attribution license="cc4" from="Microsoft" modified="false" />
970           <para>Gets or sets the name used to map this table to a specific data source.</para>
971         </summary>
972       </Docs>
973       <AssemblyInfo>
974         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
975         <AssemblyVersion>2.0.0.0</AssemblyVersion>
976       </AssemblyInfo>
977     </Member>
978     <Member MemberName="MappingNameChanged">
979       <MemberSignature Language="C#" Value="public event EventHandler MappingNameChanged;" />
980       <MemberType>Event</MemberType>
981       <ReturnValue>
982         <ReturnType>System.EventHandler</ReturnType>
983       </ReturnValue>
984       <Docs>
985         <remarks>
986           <attribution license="cc4" from="Microsoft" modified="false" />
987           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
988         </remarks>
989         <summary>
990           <attribution license="cc4" from="Microsoft" modified="false" />
991           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.MappingName" /> value changes.</para>
992         </summary>
993       </Docs>
994       <AssemblyInfo>
995         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
996         <AssemblyVersion>2.0.0.0</AssemblyVersion>
997       </AssemblyInfo>
998     </Member>
999     <Member MemberName="OnAllowSortingChanged">
1000       <MemberSignature Language="C#" Value="protected virtual void OnAllowSortingChanged (EventArgs e);" />
1001       <MemberType>Method</MemberType>
1002       <ReturnValue>
1003         <ReturnType>System.Void</ReturnType>
1004       </ReturnValue>
1005       <Parameters>
1006         <Parameter Name="e" Type="System.EventArgs" />
1007       </Parameters>
1008       <Docs>
1009         <remarks>
1010           <attribution license="cc4" from="Microsoft" modified="false" />
1011           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1012           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnAllowSortingChanged(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>
1013         </remarks>
1014         <summary>
1015           <attribution license="cc4" from="Microsoft" modified="false" />
1016           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.AllowSortingChanged" /> event.</para>
1017         </summary>
1018         <param name="e">
1019           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1020       </Docs>
1021       <AssemblyInfo>
1022         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1023         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1024       </AssemblyInfo>
1025     </Member>
1026     <Member MemberName="OnAlternatingBackColorChanged">
1027       <MemberSignature Language="C#" Value="protected virtual void OnAlternatingBackColorChanged (EventArgs e);" />
1028       <MemberType>Method</MemberType>
1029       <ReturnValue>
1030         <ReturnType>System.Void</ReturnType>
1031       </ReturnValue>
1032       <Parameters>
1033         <Parameter Name="e" Type="System.EventArgs" />
1034       </Parameters>
1035       <Docs>
1036         <remarks>
1037           <attribution license="cc4" from="Microsoft" modified="false" />
1038           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1039           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnAlternatingBackColorChanged(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>
1040         </remarks>
1041         <summary>
1042           <attribution license="cc4" from="Microsoft" modified="false" />
1043           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.AlternatingBackColorChanged" /> event.</para>
1044         </summary>
1045         <param name="e">
1046           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1047       </Docs>
1048       <AssemblyInfo>
1049         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1050         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1051       </AssemblyInfo>
1052     </Member>
1053     <Member MemberName="OnBackColorChanged">
1054       <MemberSignature Language="C#" Value="protected virtual void OnBackColorChanged (EventArgs e);" />
1055       <MemberType>Method</MemberType>
1056       <ReturnValue>
1057         <ReturnType>System.Void</ReturnType>
1058       </ReturnValue>
1059       <Parameters>
1060         <Parameter Name="e" Type="System.EventArgs" />
1061       </Parameters>
1062       <Docs>
1063         <remarks>
1064           <attribution license="cc4" from="Microsoft" modified="false" />
1065           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1066           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnBackColorChanged(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>
1067         </remarks>
1068         <summary>
1069           <attribution license="cc4" from="Microsoft" modified="false" />
1070           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.BackColorChanged" /> event.</para>
1071         </summary>
1072         <param name="e">
1073           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1074       </Docs>
1075       <AssemblyInfo>
1076         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1077         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1078       </AssemblyInfo>
1079     </Member>
1080     <Member MemberName="OnColumnHeadersVisibleChanged">
1081       <MemberSignature Language="C#" Value="protected virtual void OnColumnHeadersVisibleChanged (EventArgs e);" />
1082       <MemberType>Method</MemberType>
1083       <ReturnValue>
1084         <ReturnType>System.Void</ReturnType>
1085       </ReturnValue>
1086       <Parameters>
1087         <Parameter Name="e" Type="System.EventArgs" />
1088       </Parameters>
1089       <Docs>
1090         <remarks>
1091           <attribution license="cc4" from="Microsoft" modified="false" />
1092           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1093           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnColumnHeadersVisibleChanged(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>
1094         </remarks>
1095         <summary>
1096           <attribution license="cc4" from="Microsoft" modified="false" />
1097           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.ColumnHeadersVisibleChanged" /> event.</para>
1098         </summary>
1099         <param name="e">
1100           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1101       </Docs>
1102       <AssemblyInfo>
1103         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1104         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1105       </AssemblyInfo>
1106     </Member>
1107     <Member MemberName="OnForeColorChanged">
1108       <MemberSignature Language="C#" Value="protected virtual void OnForeColorChanged (EventArgs e);" />
1109       <MemberType>Method</MemberType>
1110       <ReturnValue>
1111         <ReturnType>System.Void</ReturnType>
1112       </ReturnValue>
1113       <Parameters>
1114         <Parameter Name="e" Type="System.EventArgs" />
1115       </Parameters>
1116       <Docs>
1117         <remarks>
1118           <attribution license="cc4" from="Microsoft" modified="false" />
1119           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1120           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.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>
1121         </remarks>
1122         <summary>
1123           <attribution license="cc4" from="Microsoft" modified="false" />
1124           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.ForeColorChanged" /> event.</para>
1125         </summary>
1126         <param name="e">
1127           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1128       </Docs>
1129       <AssemblyInfo>
1130         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1131         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1132       </AssemblyInfo>
1133     </Member>
1134     <Member MemberName="OnGridLineColorChanged">
1135       <MemberSignature Language="C#" Value="protected virtual void OnGridLineColorChanged (EventArgs e);" />
1136       <MemberType>Method</MemberType>
1137       <ReturnValue>
1138         <ReturnType>System.Void</ReturnType>
1139       </ReturnValue>
1140       <Parameters>
1141         <Parameter Name="e" Type="System.EventArgs" />
1142       </Parameters>
1143       <Docs>
1144         <remarks>
1145           <attribution license="cc4" from="Microsoft" modified="false" />
1146           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1147           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnGridLineColorChanged(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>
1148         </remarks>
1149         <summary>
1150           <attribution license="cc4" from="Microsoft" modified="false" />
1151           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.GridLineColorChanged" /> event.</para>
1152         </summary>
1153         <param name="e">
1154           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1155       </Docs>
1156       <AssemblyInfo>
1157         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1158         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1159       </AssemblyInfo>
1160     </Member>
1161     <Member MemberName="OnGridLineStyleChanged">
1162       <MemberSignature Language="C#" Value="protected virtual void OnGridLineStyleChanged (EventArgs e);" />
1163       <MemberType>Method</MemberType>
1164       <ReturnValue>
1165         <ReturnType>System.Void</ReturnType>
1166       </ReturnValue>
1167       <Parameters>
1168         <Parameter Name="e" Type="System.EventArgs" />
1169       </Parameters>
1170       <Docs>
1171         <remarks>
1172           <attribution license="cc4" from="Microsoft" modified="false" />
1173           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1174           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnGridLineStyleChanged(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>
1175         </remarks>
1176         <summary>
1177           <attribution license="cc4" from="Microsoft" modified="false" />
1178           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.GridLineStyleChanged" /> event.</para>
1179         </summary>
1180         <param name="e">
1181           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1182       </Docs>
1183       <AssemblyInfo>
1184         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1185         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1186       </AssemblyInfo>
1187     </Member>
1188     <Member MemberName="OnHeaderBackColorChanged">
1189       <MemberSignature Language="C#" Value="protected virtual void OnHeaderBackColorChanged (EventArgs e);" />
1190       <MemberType>Method</MemberType>
1191       <ReturnValue>
1192         <ReturnType>System.Void</ReturnType>
1193       </ReturnValue>
1194       <Parameters>
1195         <Parameter Name="e" Type="System.EventArgs" />
1196       </Parameters>
1197       <Docs>
1198         <remarks>
1199           <attribution license="cc4" from="Microsoft" modified="false" />
1200           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1201           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnHeaderBackColorChanged(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>
1202         </remarks>
1203         <summary>
1204           <attribution license="cc4" from="Microsoft" modified="false" />
1205           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.HeaderBackColorChanged" /> event.</para>
1206         </summary>
1207         <param name="e">
1208           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1209       </Docs>
1210       <AssemblyInfo>
1211         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1212         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1213       </AssemblyInfo>
1214     </Member>
1215     <Member MemberName="OnHeaderFontChanged">
1216       <MemberSignature Language="C#" Value="protected virtual void OnHeaderFontChanged (EventArgs e);" />
1217       <MemberType>Method</MemberType>
1218       <ReturnValue>
1219         <ReturnType>System.Void</ReturnType>
1220       </ReturnValue>
1221       <Parameters>
1222         <Parameter Name="e" Type="System.EventArgs" />
1223       </Parameters>
1224       <Docs>
1225         <remarks>
1226           <attribution license="cc4" from="Microsoft" modified="false" />
1227           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1228           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnHeaderFontChanged(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>
1229         </remarks>
1230         <summary>
1231           <attribution license="cc4" from="Microsoft" modified="false" />
1232           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.HeaderFontChanged" /> event.</para>
1233         </summary>
1234         <param name="e">
1235           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1236       </Docs>
1237       <AssemblyInfo>
1238         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1239         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1240       </AssemblyInfo>
1241     </Member>
1242     <Member MemberName="OnHeaderForeColorChanged">
1243       <MemberSignature Language="C#" Value="protected virtual void OnHeaderForeColorChanged (EventArgs e);" />
1244       <MemberType>Method</MemberType>
1245       <ReturnValue>
1246         <ReturnType>System.Void</ReturnType>
1247       </ReturnValue>
1248       <Parameters>
1249         <Parameter Name="e" Type="System.EventArgs" />
1250       </Parameters>
1251       <Docs>
1252         <remarks>
1253           <attribution license="cc4" from="Microsoft" modified="false" />
1254           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1255           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnHeaderForeColorChanged(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>
1256         </remarks>
1257         <summary>
1258           <attribution license="cc4" from="Microsoft" modified="false" />
1259           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.HeaderForeColorChanged" /> event.</para>
1260         </summary>
1261         <param name="e">
1262           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1263       </Docs>
1264       <AssemblyInfo>
1265         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1266         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1267       </AssemblyInfo>
1268     </Member>
1269     <Member MemberName="OnLinkColorChanged">
1270       <MemberSignature Language="C#" Value="protected virtual void OnLinkColorChanged (EventArgs e);" />
1271       <MemberType>Method</MemberType>
1272       <ReturnValue>
1273         <ReturnType>System.Void</ReturnType>
1274       </ReturnValue>
1275       <Parameters>
1276         <Parameter Name="e" Type="System.EventArgs" />
1277       </Parameters>
1278       <Docs>
1279         <remarks>
1280           <attribution license="cc4" from="Microsoft" modified="false" />
1281           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1282           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnLinkColorChanged(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>
1283         </remarks>
1284         <summary>
1285           <attribution license="cc4" from="Microsoft" modified="false" />
1286           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.LinkColorChanged" /> event.</para>
1287         </summary>
1288         <param name="e">
1289           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1290       </Docs>
1291       <AssemblyInfo>
1292         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1293         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1294       </AssemblyInfo>
1295     </Member>
1296     <Member MemberName="OnLinkHoverColorChanged">
1297       <MemberSignature Language="C#" Value="protected virtual void OnLinkHoverColorChanged (EventArgs e);" />
1298       <MemberType>Method</MemberType>
1299       <ReturnValue>
1300         <ReturnType>System.Void</ReturnType>
1301       </ReturnValue>
1302       <Parameters>
1303         <Parameter Name="e" Type="System.EventArgs" />
1304       </Parameters>
1305       <Docs>
1306         <remarks>
1307           <attribution license="cc4" from="Microsoft" modified="false" />
1308           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1309           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnLinkHoverColorChanged(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>
1310         </remarks>
1311         <summary>
1312           <attribution license="cc4" from="Microsoft" modified="false" />
1313           <para>Raises the LinkHoverColorChanged event.</para>
1314         </summary>
1315         <param name="e">
1316           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1317       </Docs>
1318       <AssemblyInfo>
1319         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1320         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1321       </AssemblyInfo>
1322     </Member>
1323     <Member MemberName="OnMappingNameChanged">
1324       <MemberSignature Language="C#" Value="protected virtual void OnMappingNameChanged (EventArgs e);" />
1325       <MemberType>Method</MemberType>
1326       <ReturnValue>
1327         <ReturnType>System.Void</ReturnType>
1328       </ReturnValue>
1329       <Parameters>
1330         <Parameter Name="e" Type="System.EventArgs" />
1331       </Parameters>
1332       <Docs>
1333         <remarks>
1334           <attribution license="cc4" from="Microsoft" modified="false" />
1335           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1336           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnMappingNameChanged(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>
1337         </remarks>
1338         <summary>
1339           <attribution license="cc4" from="Microsoft" modified="false" />
1340           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.MappingNameChanged" /> event </para>
1341         </summary>
1342         <param name="e">
1343           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1344       </Docs>
1345       <AssemblyInfo>
1346         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1347         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1348       </AssemblyInfo>
1349     </Member>
1350     <Member MemberName="OnPreferredColumnWidthChanged">
1351       <MemberSignature Language="C#" Value="protected virtual void OnPreferredColumnWidthChanged (EventArgs e);" />
1352       <MemberType>Method</MemberType>
1353       <ReturnValue>
1354         <ReturnType>System.Void</ReturnType>
1355       </ReturnValue>
1356       <Parameters>
1357         <Parameter Name="e" Type="System.EventArgs" />
1358       </Parameters>
1359       <Docs>
1360         <remarks>
1361           <attribution license="cc4" from="Microsoft" modified="false" />
1362           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1363           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnPreferredColumnWidthChanged(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>
1364         </remarks>
1365         <summary>
1366           <attribution license="cc4" from="Microsoft" modified="false" />
1367           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.PreferredColumnWidthChanged" /> event.</para>
1368         </summary>
1369         <param name="e">
1370           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1371       </Docs>
1372       <AssemblyInfo>
1373         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1374         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1375       </AssemblyInfo>
1376     </Member>
1377     <Member MemberName="OnPreferredRowHeightChanged">
1378       <MemberSignature Language="C#" Value="protected virtual void OnPreferredRowHeightChanged (EventArgs e);" />
1379       <MemberType>Method</MemberType>
1380       <ReturnValue>
1381         <ReturnType>System.Void</ReturnType>
1382       </ReturnValue>
1383       <Parameters>
1384         <Parameter Name="e" Type="System.EventArgs" />
1385       </Parameters>
1386       <Docs>
1387         <remarks>
1388           <attribution license="cc4" from="Microsoft" modified="false" />
1389           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1390           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnPreferredRowHeightChanged(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>
1391         </remarks>
1392         <summary>
1393           <attribution license="cc4" from="Microsoft" modified="false" />
1394           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.PreferredRowHeightChanged" /> event.</para>
1395         </summary>
1396         <param name="e">
1397           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1398       </Docs>
1399       <AssemblyInfo>
1400         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1401         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1402       </AssemblyInfo>
1403     </Member>
1404     <Member MemberName="OnReadOnlyChanged">
1405       <MemberSignature Language="C#" Value="protected virtual void OnReadOnlyChanged (EventArgs e);" />
1406       <MemberType>Method</MemberType>
1407       <ReturnValue>
1408         <ReturnType>System.Void</ReturnType>
1409       </ReturnValue>
1410       <Parameters>
1411         <Parameter Name="e" Type="System.EventArgs" />
1412       </Parameters>
1413       <Docs>
1414         <remarks>
1415           <attribution license="cc4" from="Microsoft" modified="false" />
1416           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1417           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.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>
1418         </remarks>
1419         <summary>
1420           <attribution license="cc4" from="Microsoft" modified="false" />
1421           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.ReadOnlyChanged" /> event.</para>
1422         </summary>
1423         <param name="e">
1424           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1425       </Docs>
1426       <AssemblyInfo>
1427         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1428         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1429       </AssemblyInfo>
1430     </Member>
1431     <Member MemberName="OnRowHeadersVisibleChanged">
1432       <MemberSignature Language="C#" Value="protected virtual void OnRowHeadersVisibleChanged (EventArgs e);" />
1433       <MemberType>Method</MemberType>
1434       <ReturnValue>
1435         <ReturnType>System.Void</ReturnType>
1436       </ReturnValue>
1437       <Parameters>
1438         <Parameter Name="e" Type="System.EventArgs" />
1439       </Parameters>
1440       <Docs>
1441         <remarks>
1442           <attribution license="cc4" from="Microsoft" modified="false" />
1443           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1444           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnRowHeadersVisibleChanged(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>
1445         </remarks>
1446         <summary>
1447           <attribution license="cc4" from="Microsoft" modified="false" />
1448           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.RowHeadersVisibleChanged" /> event.</para>
1449         </summary>
1450         <param name="e">
1451           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1452       </Docs>
1453       <AssemblyInfo>
1454         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1455         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1456       </AssemblyInfo>
1457     </Member>
1458     <Member MemberName="OnRowHeaderWidthChanged">
1459       <MemberSignature Language="C#" Value="protected virtual void OnRowHeaderWidthChanged (EventArgs e);" />
1460       <MemberType>Method</MemberType>
1461       <ReturnValue>
1462         <ReturnType>System.Void</ReturnType>
1463       </ReturnValue>
1464       <Parameters>
1465         <Parameter Name="e" Type="System.EventArgs" />
1466       </Parameters>
1467       <Docs>
1468         <remarks>
1469           <attribution license="cc4" from="Microsoft" modified="false" />
1470           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1471           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnRowHeaderWidthChanged(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>
1472         </remarks>
1473         <summary>
1474           <attribution license="cc4" from="Microsoft" modified="false" />
1475           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.RowHeaderWidthChanged" /> event.</para>
1476         </summary>
1477         <param name="e">
1478           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1479       </Docs>
1480       <AssemblyInfo>
1481         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1482         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1483       </AssemblyInfo>
1484     </Member>
1485     <Member MemberName="OnSelectionBackColorChanged">
1486       <MemberSignature Language="C#" Value="protected virtual void OnSelectionBackColorChanged (EventArgs e);" />
1487       <MemberType>Method</MemberType>
1488       <ReturnValue>
1489         <ReturnType>System.Void</ReturnType>
1490       </ReturnValue>
1491       <Parameters>
1492         <Parameter Name="e" Type="System.EventArgs" />
1493       </Parameters>
1494       <Docs>
1495         <remarks>
1496           <attribution license="cc4" from="Microsoft" modified="false" />
1497           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1498           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnSelectionBackColorChanged(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>
1499         </remarks>
1500         <summary>
1501           <attribution license="cc4" from="Microsoft" modified="false" />
1502           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.SelectionBackColorChanged" /> event.</para>
1503         </summary>
1504         <param name="e">
1505           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1506       </Docs>
1507       <AssemblyInfo>
1508         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1509         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1510       </AssemblyInfo>
1511     </Member>
1512     <Member MemberName="OnSelectionForeColorChanged">
1513       <MemberSignature Language="C#" Value="protected virtual void OnSelectionForeColorChanged (EventArgs e);" />
1514       <MemberType>Method</MemberType>
1515       <ReturnValue>
1516         <ReturnType>System.Void</ReturnType>
1517       </ReturnValue>
1518       <Parameters>
1519         <Parameter Name="e" Type="System.EventArgs" />
1520       </Parameters>
1521       <Docs>
1522         <remarks>
1523           <attribution license="cc4" from="Microsoft" modified="false" />
1524           <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">[&lt;topic://cpconProvidingEventFunctionality&gt;]</a></format>.</para>
1525           <para>The <see cref="M:System.Windows.Forms.DataGridTableStyle.OnSelectionForeColorChanged(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>
1526         </remarks>
1527         <summary>
1528           <attribution license="cc4" from="Microsoft" modified="false" />
1529           <para>Raises the <see cref="E:System.Windows.Forms.DataGridTableStyle.SelectionForeColorChanged" /> event.</para>
1530         </summary>
1531         <param name="e">
1532           <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
1533       </Docs>
1534       <AssemblyInfo>
1535         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1536         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1537       </AssemblyInfo>
1538     </Member>
1539     <Member MemberName="PreferredColumnWidth">
1540       <MemberSignature Language="C#" Value="public int PreferredColumnWidth { set; get; }" />
1541       <MemberType>Property</MemberType>
1542       <Attributes>
1543         <Attribute>
1544           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1545         </Attribute>
1546         <Attribute>
1547           <AttributeName>System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataGridPreferredColumnWidthTypeConverter))</AttributeName>
1548         </Attribute>
1549         <Attribute>
1550           <AttributeName>System.ComponentModel.DefaultValue(75)</AttributeName>
1551         </Attribute>
1552       </Attributes>
1553       <ReturnValue>
1554         <ReturnType>System.Int32</ReturnType>
1555       </ReturnValue>
1556       <Docs>
1557         <value>To be added.</value>
1558         <remarks>To be added.</remarks>
1559         <summary>
1560           <attribution license="cc4" from="Microsoft" modified="false" />
1561           <para>Gets or sets the width used to create columns when a new grid is displayed.</para>
1562         </summary>
1563       </Docs>
1564       <AssemblyInfo>
1565         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1566         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1567       </AssemblyInfo>
1568     </Member>
1569     <Member MemberName="PreferredColumnWidthChanged">
1570       <MemberSignature Language="C#" Value="public event EventHandler PreferredColumnWidthChanged;" />
1571       <MemberType>Event</MemberType>
1572       <ReturnValue>
1573         <ReturnType>System.EventHandler</ReturnType>
1574       </ReturnValue>
1575       <Docs>
1576         <remarks>To be added.</remarks>
1577         <summary>
1578           <attribution license="cc4" from="Microsoft" modified="false" />
1579           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.PreferredColumnWidth" /> property value changes.</para>
1580         </summary>
1581       </Docs>
1582       <AssemblyInfo>
1583         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1584         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1585       </AssemblyInfo>
1586     </Member>
1587     <Member MemberName="PreferredRowHeight">
1588       <MemberSignature Language="C#" Value="public int PreferredRowHeight { set; get; }" />
1589       <MemberType>Property</MemberType>
1590       <Attributes>
1591         <Attribute>
1592           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1593         </Attribute>
1594       </Attributes>
1595       <ReturnValue>
1596         <ReturnType>System.Int32</ReturnType>
1597       </ReturnValue>
1598       <Docs>
1599         <value>To be added.</value>
1600         <remarks>
1601           <attribution license="cc4" from="Microsoft" modified="false" />
1602           <para>The preferred height is the minimum height needed to accommodate the displayed text with the assigned <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderFont" />. A row will not be created with a height less than the specified value. If the font size requires it, however, the row height may be greater than the specified value.</para>
1603         </remarks>
1604         <summary>
1605           <attribution license="cc4" from="Microsoft" modified="false" />
1606           <para>Gets or sets the height used to create a row when a new grid is displayed.</para>
1607         </summary>
1608       </Docs>
1609       <AssemblyInfo>
1610         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1611         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1612       </AssemblyInfo>
1613     </Member>
1614     <Member MemberName="PreferredRowHeightChanged">
1615       <MemberSignature Language="C#" Value="public event EventHandler PreferredRowHeightChanged;" />
1616       <MemberType>Event</MemberType>
1617       <ReturnValue>
1618         <ReturnType>System.EventHandler</ReturnType>
1619       </ReturnValue>
1620       <Docs>
1621         <remarks>
1622           <attribution license="cc4" from="Microsoft" modified="false" />
1623           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
1624         </remarks>
1625         <summary>
1626           <attribution license="cc4" from="Microsoft" modified="false" />
1627           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.PreferredRowHeight" /> value changes.</para>
1628         </summary>
1629       </Docs>
1630       <AssemblyInfo>
1631         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1632         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1633       </AssemblyInfo>
1634     </Member>
1635     <Member MemberName="ReadOnly">
1636       <MemberSignature Language="C#" Value="public virtual bool ReadOnly { set; get; }" />
1637       <MemberType>Property</MemberType>
1638       <Attributes>
1639         <Attribute>
1640           <AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
1641         </Attribute>
1642       </Attributes>
1643       <ReturnValue>
1644         <ReturnType>System.Boolean</ReturnType>
1645       </ReturnValue>
1646       <Docs>
1647         <value>To be added.</value>
1648         <remarks>
1649           <attribution license="cc4" from="Microsoft" modified="false" />
1650           <para>You can also specify whether individual columns within the table are editable by setting the <see cref="T:System.Windows.Forms.DataGridColumnStyle" /> class's <see cref="P:System.Windows.Forms.DataGridColumnStyle.ReadOnly" /> property to an appropriate value, true or false.</para>
1651           <para>Alternatively, to ensure that the data is not edited, you can set the <see cref="T:System.Data.DataColumn" /> class's <see cref="P:System.Data.DataColumn.ReadOnly" /> property to true.</para>
1652         </remarks>
1653         <summary>
1654           <attribution license="cc4" from="Microsoft" modified="false" />
1655           <para>Gets or sets a value indicating whether columns can be edited.</para>
1656         </summary>
1657       </Docs>
1658       <AssemblyInfo>
1659         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1660         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1661       </AssemblyInfo>
1662     </Member>
1663     <Member MemberName="ReadOnlyChanged">
1664       <MemberSignature Language="C#" Value="public event EventHandler ReadOnlyChanged;" />
1665       <MemberType>Event</MemberType>
1666       <ReturnValue>
1667         <ReturnType>System.EventHandler</ReturnType>
1668       </ReturnValue>
1669       <Docs>
1670         <remarks>
1671           <attribution license="cc4" from="Microsoft" modified="false" />
1672           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
1673         </remarks>
1674         <summary>
1675           <attribution license="cc4" from="Microsoft" modified="false" />
1676           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.ReadOnly" /> value changes.</para>
1677         </summary>
1678       </Docs>
1679       <AssemblyInfo>
1680         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1681         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1682       </AssemblyInfo>
1683     </Member>
1684     <Member MemberName="ResetAlternatingBackColor">
1685       <MemberSignature Language="C#" Value="public void ResetAlternatingBackColor ();" />
1686       <MemberType>Method</MemberType>
1687       <ReturnValue>
1688         <ReturnType>System.Void</ReturnType>
1689       </ReturnValue>
1690       <Parameters />
1691       <Docs>
1692         <remarks>
1693           <attribution license="cc4" from="Microsoft" modified="false" />
1694           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeAlternatingBackColor" /> method to determine whether the property value has changed from its default.</para>
1695         </remarks>
1696         <summary>
1697           <attribution license="cc4" from="Microsoft" modified="false" />
1698           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.AlternatingBackColor" /> property to its default value.</para>
1699         </summary>
1700       </Docs>
1701       <AssemblyInfo>
1702         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1703         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1704       </AssemblyInfo>
1705     </Member>
1706     <Member MemberName="ResetBackColor">
1707       <MemberSignature Language="C#" Value="public void ResetBackColor ();" />
1708       <MemberType>Method</MemberType>
1709       <ReturnValue>
1710         <ReturnType>System.Void</ReturnType>
1711       </ReturnValue>
1712       <Parameters />
1713       <Docs>
1714         <remarks>
1715           <attribution license="cc4" from="Microsoft" modified="false" />
1716           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
1717         </remarks>
1718         <summary>
1719           <attribution license="cc4" from="Microsoft" modified="false" />
1720           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.BackColor" /> property to its default value.</para>
1721         </summary>
1722       </Docs>
1723       <AssemblyInfo>
1724         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1725         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1726       </AssemblyInfo>
1727     </Member>
1728     <Member MemberName="ResetForeColor">
1729       <MemberSignature Language="C#" Value="public void ResetForeColor ();" />
1730       <MemberType>Method</MemberType>
1731       <ReturnValue>
1732         <ReturnType>System.Void</ReturnType>
1733       </ReturnValue>
1734       <Parameters />
1735       <Docs>
1736         <remarks>
1737           <attribution license="cc4" from="Microsoft" modified="false" />
1738           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeForeColor" /> method to determine whether the property value has changed from its default.</para>
1739         </remarks>
1740         <summary>
1741           <attribution license="cc4" from="Microsoft" modified="false" />
1742           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.ForeColor" /> property to its default value.</para>
1743         </summary>
1744       </Docs>
1745       <AssemblyInfo>
1746         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1747         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1748       </AssemblyInfo>
1749     </Member>
1750     <Member MemberName="ResetGridLineColor">
1751       <MemberSignature Language="C#" Value="public void ResetGridLineColor ();" />
1752       <MemberType>Method</MemberType>
1753       <ReturnValue>
1754         <ReturnType>System.Void</ReturnType>
1755       </ReturnValue>
1756       <Parameters />
1757       <Docs>
1758         <remarks>
1759           <attribution license="cc4" from="Microsoft" modified="false" />
1760           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeGridLineColor" /> method to determine whether the property value has changed from its default.</para>
1761         </remarks>
1762         <summary>
1763           <attribution license="cc4" from="Microsoft" modified="false" />
1764           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.GridLineColor" /> property to its default value.</para>
1765         </summary>
1766       </Docs>
1767       <AssemblyInfo>
1768         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1769         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1770       </AssemblyInfo>
1771     </Member>
1772     <Member MemberName="ResetHeaderBackColor">
1773       <MemberSignature Language="C#" Value="public void ResetHeaderBackColor ();" />
1774       <MemberType>Method</MemberType>
1775       <ReturnValue>
1776         <ReturnType>System.Void</ReturnType>
1777       </ReturnValue>
1778       <Parameters />
1779       <Docs>
1780         <remarks>
1781           <attribution license="cc4" from="Microsoft" modified="false" />
1782           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeHeaderBackColor" /> method to determine whether the property value has changed from its default.</para>
1783         </remarks>
1784         <summary>
1785           <attribution license="cc4" from="Microsoft" modified="false" />
1786           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderBackColor" /> property to its default value.</para>
1787         </summary>
1788       </Docs>
1789       <AssemblyInfo>
1790         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1791         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1792       </AssemblyInfo>
1793     </Member>
1794     <Member MemberName="ResetHeaderFont">
1795       <MemberSignature Language="C#" Value="public void ResetHeaderFont ();" />
1796       <MemberType>Method</MemberType>
1797       <ReturnValue>
1798         <ReturnType>System.Void</ReturnType>
1799       </ReturnValue>
1800       <Parameters />
1801       <Docs>
1802         <remarks>
1803           <attribution license="cc4" from="Microsoft" modified="false" />
1804           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
1805         </remarks>
1806         <summary>
1807           <attribution license="cc4" from="Microsoft" modified="false" />
1808           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderFont" /> property to its default value.</para>
1809         </summary>
1810       </Docs>
1811       <AssemblyInfo>
1812         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1813         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1814       </AssemblyInfo>
1815     </Member>
1816     <Member MemberName="ResetHeaderForeColor">
1817       <MemberSignature Language="C#" Value="public void ResetHeaderForeColor ();" />
1818       <MemberType>Method</MemberType>
1819       <ReturnValue>
1820         <ReturnType>System.Void</ReturnType>
1821       </ReturnValue>
1822       <Parameters />
1823       <Docs>
1824         <remarks>
1825           <attribution license="cc4" from="Microsoft" modified="false" />
1826           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeHeaderForeColor" /> method to determine whether the property value has changed from its default.</para>
1827         </remarks>
1828         <summary>
1829           <attribution license="cc4" from="Microsoft" modified="false" />
1830           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderForeColor" /> property to its default value.</para>
1831         </summary>
1832       </Docs>
1833       <AssemblyInfo>
1834         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1835         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1836       </AssemblyInfo>
1837     </Member>
1838     <Member MemberName="ResetLinkColor">
1839       <MemberSignature Language="C#" Value="public void ResetLinkColor ();" />
1840       <MemberType>Method</MemberType>
1841       <ReturnValue>
1842         <ReturnType>System.Void</ReturnType>
1843       </ReturnValue>
1844       <Parameters />
1845       <Docs>
1846         <remarks>
1847           <attribution license="cc4" from="Microsoft" modified="false" />
1848           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeLinkColor" /> method to determine whether the property value has changed from its default.</para>
1849         </remarks>
1850         <summary>
1851           <attribution license="cc4" from="Microsoft" modified="false" />
1852           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkColor" /> property to its default value.</para>
1853         </summary>
1854       </Docs>
1855       <AssemblyInfo>
1856         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1857         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1858       </AssemblyInfo>
1859     </Member>
1860     <Member MemberName="ResetLinkHoverColor">
1861       <MemberSignature Language="C#" Value="public void ResetLinkHoverColor ();" />
1862       <MemberType>Method</MemberType>
1863       <ReturnValue>
1864         <ReturnType>System.Void</ReturnType>
1865       </ReturnValue>
1866       <Parameters />
1867       <Docs>
1868         <remarks>
1869           <attribution license="cc4" from="Microsoft" modified="false" />
1870           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeLinkHoverColor" /> method to determine whether the property value has changed from its default.</para>
1871         </remarks>
1872         <summary>
1873           <attribution license="cc4" from="Microsoft" modified="false" />
1874           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkHoverColor" /> property to its default value.</para>
1875         </summary>
1876       </Docs>
1877       <AssemblyInfo>
1878         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1879         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1880       </AssemblyInfo>
1881     </Member>
1882     <Member MemberName="ResetSelectionBackColor">
1883       <MemberSignature Language="C#" Value="public void ResetSelectionBackColor ();" />
1884       <MemberType>Method</MemberType>
1885       <ReturnValue>
1886         <ReturnType>System.Void</ReturnType>
1887       </ReturnValue>
1888       <Parameters />
1889       <Docs>
1890         <remarks>
1891           <attribution license="cc4" from="Microsoft" modified="false" />
1892           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeSelectionBackColor" /> method to determine whether the property value has changed from its default.</para>
1893         </remarks>
1894         <summary>
1895           <attribution license="cc4" from="Microsoft" modified="false" />
1896           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionBackColor" /> property to its default value.</para>
1897         </summary>
1898       </Docs>
1899       <AssemblyInfo>
1900         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1901         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1902       </AssemblyInfo>
1903     </Member>
1904     <Member MemberName="ResetSelectionForeColor">
1905       <MemberSignature Language="C#" Value="public void ResetSelectionForeColor ();" />
1906       <MemberType>Method</MemberType>
1907       <ReturnValue>
1908         <ReturnType>System.Void</ReturnType>
1909       </ReturnValue>
1910       <Parameters />
1911       <Docs>
1912         <remarks>
1913           <attribution license="cc4" from="Microsoft" modified="false" />
1914           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />. You can use the <see cref="M:System.Windows.Forms.DataGridTableStyle.ShouldSerializeSelectionForeColor" /> method to determine whether the property value has changed from its default.</para>
1915         </remarks>
1916         <summary>
1917           <attribution license="cc4" from="Microsoft" modified="false" />
1918           <para>Resets the <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionForeColor" /> property to its default value.</para>
1919         </summary>
1920       </Docs>
1921       <AssemblyInfo>
1922         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1923         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1924       </AssemblyInfo>
1925     </Member>
1926     <Member MemberName="RowHeadersVisible">
1927       <MemberSignature Language="C#" Value="public bool RowHeadersVisible { set; get; }" />
1928       <MemberType>Property</MemberType>
1929       <Attributes>
1930         <Attribute>
1931           <AttributeName>System.ComponentModel.DefaultValue(true)</AttributeName>
1932         </Attribute>
1933       </Attributes>
1934       <ReturnValue>
1935         <ReturnType>System.Boolean</ReturnType>
1936       </ReturnValue>
1937       <Docs>
1938         <value>To be added.</value>
1939         <remarks>
1940           <attribution license="cc4" from="Microsoft" modified="false" />
1941           <para>When row headers are visible, a plus sign is displayed in each row header if the underlying <see cref="T:System.Data.DataTable" /> has a related child table.</para>
1942           <para>This property will not function until you add <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects to the <see cref="T:System.Windows.Forms.GridTableStylesCollection" />. Until then, setting this property will have no effect.</para>
1943         </remarks>
1944         <summary>
1945           <attribution license="cc4" from="Microsoft" modified="false" />
1946           <para>Gets or sets a value indicating whether row headers are visible.</para>
1947         </summary>
1948       </Docs>
1949       <AssemblyInfo>
1950         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1951         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1952       </AssemblyInfo>
1953     </Member>
1954     <Member MemberName="RowHeadersVisibleChanged">
1955       <MemberSignature Language="C#" Value="public event EventHandler RowHeadersVisibleChanged;" />
1956       <MemberType>Event</MemberType>
1957       <ReturnValue>
1958         <ReturnType>System.EventHandler</ReturnType>
1959       </ReturnValue>
1960       <Docs>
1961         <remarks>
1962           <attribution license="cc4" from="Microsoft" modified="false" />
1963           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
1964         </remarks>
1965         <summary>
1966           <attribution license="cc4" from="Microsoft" modified="false" />
1967           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.RowHeadersVisible" /> value changes.</para>
1968         </summary>
1969       </Docs>
1970       <AssemblyInfo>
1971         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
1972         <AssemblyVersion>2.0.0.0</AssemblyVersion>
1973       </AssemblyInfo>
1974     </Member>
1975     <Member MemberName="RowHeaderWidth">
1976       <MemberSignature Language="C#" Value="public int RowHeaderWidth { set; get; }" />
1977       <MemberType>Property</MemberType>
1978       <Attributes>
1979         <Attribute>
1980           <AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
1981         </Attribute>
1982         <Attribute>
1983           <AttributeName>System.ComponentModel.DefaultValue(35)</AttributeName>
1984         </Attribute>
1985       </Attributes>
1986       <ReturnValue>
1987         <ReturnType>System.Int32</ReturnType>
1988       </ReturnValue>
1989       <Docs>
1990         <value>To be added.</value>
1991         <remarks>
1992           <attribution license="cc4" from="Microsoft" modified="false" />
1993           <para>When row headers are visible a plus sign is displayed in each row header if the underlying data has a related child table.</para>
1994           <para>This property will not function until you add <see cref="T:System.Windows.Forms.DataGridTableStyle" /> objects to the <see cref="T:System.Windows.Forms.GridTableStylesCollection" />. Until then, setting this property will have no effect.</para>
1995         </remarks>
1996         <summary>
1997           <attribution license="cc4" from="Microsoft" modified="false" />
1998           <para>Gets or sets the width of row headers.</para>
1999         </summary>
2000       </Docs>
2001       <AssemblyInfo>
2002         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2003         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2004       </AssemblyInfo>
2005     </Member>
2006     <Member MemberName="RowHeaderWidthChanged">
2007       <MemberSignature Language="C#" Value="public event EventHandler RowHeaderWidthChanged;" />
2008       <MemberType>Event</MemberType>
2009       <ReturnValue>
2010         <ReturnType>System.EventHandler</ReturnType>
2011       </ReturnValue>
2012       <Docs>
2013         <remarks>
2014           <attribution license="cc4" from="Microsoft" modified="false" />
2015           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
2016         </remarks>
2017         <summary>
2018           <attribution license="cc4" from="Microsoft" modified="false" />
2019           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.RowHeaderWidth" /> value changes.</para>
2020         </summary>
2021       </Docs>
2022       <AssemblyInfo>
2023         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2024         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2025       </AssemblyInfo>
2026     </Member>
2027     <Member MemberName="SelectionBackColor">
2028       <MemberSignature Language="C#" Value="public System.Drawing.Color SelectionBackColor { set; get; }" />
2029       <MemberType>Property</MemberType>
2030       <ReturnValue>
2031         <ReturnType>System.Drawing.Color</ReturnType>
2032       </ReturnValue>
2033       <Docs>
2034         <value>To be added.</value>
2035         <remarks>To be added.</remarks>
2036         <summary>
2037           <attribution license="cc4" from="Microsoft" modified="false" />
2038           <para>Gets or sets the background color of selected cells.</para>
2039         </summary>
2040       </Docs>
2041       <AssemblyInfo>
2042         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2043         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2044       </AssemblyInfo>
2045     </Member>
2046     <Member MemberName="SelectionBackColorChanged">
2047       <MemberSignature Language="C#" Value="public event EventHandler SelectionBackColorChanged;" />
2048       <MemberType>Event</MemberType>
2049       <ReturnValue>
2050         <ReturnType>System.EventHandler</ReturnType>
2051       </ReturnValue>
2052       <Docs>
2053         <remarks>
2054           <attribution license="cc4" from="Microsoft" modified="false" />
2055           <para>For more information about handling events, see <format type="text/html"><a href="01E4F1BC-E55E-413F-98C7-6588493E5F67">[&lt;topic://cpconEventsOverview&gt;]</a></format>.</para>
2056         </remarks>
2057         <summary>
2058           <attribution license="cc4" from="Microsoft" modified="false" />
2059           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionBackColor" /> value changes.</para>
2060         </summary>
2061       </Docs>
2062       <AssemblyInfo>
2063         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2064         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2065       </AssemblyInfo>
2066     </Member>
2067     <Member MemberName="SelectionForeColor">
2068       <MemberSignature Language="C#" Value="public System.Drawing.Color SelectionForeColor { set; get; }" />
2069       <MemberType>Property</MemberType>
2070       <Attributes>
2071         <Attribute>
2072           <AttributeName>System.ComponentModel.Description("The foreground color for the current data grid row")</AttributeName>
2073         </Attribute>
2074       </Attributes>
2075       <ReturnValue>
2076         <ReturnType>System.Drawing.Color</ReturnType>
2077       </ReturnValue>
2078       <Docs>
2079         <value>To be added.</value>
2080         <remarks>To be added.</remarks>
2081         <summary>
2082           <attribution license="cc4" from="Microsoft" modified="false" />
2083           <para>Gets or sets the foreground color of selected cells.</para>
2084         </summary>
2085       </Docs>
2086       <AssemblyInfo>
2087         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2088         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2089       </AssemblyInfo>
2090     </Member>
2091     <Member MemberName="SelectionForeColorChanged">
2092       <MemberSignature Language="C#" Value="public event EventHandler SelectionForeColorChanged;" />
2093       <MemberType>Event</MemberType>
2094       <ReturnValue>
2095         <ReturnType>System.EventHandler</ReturnType>
2096       </ReturnValue>
2097       <Docs>
2098         <remarks>To be added.</remarks>
2099         <summary>
2100           <attribution license="cc4" from="Microsoft" modified="false" />
2101           <para>Occurs when the <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionForeColor" /> value changes.</para>
2102         </summary>
2103       </Docs>
2104       <AssemblyInfo>
2105         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2106         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2107       </AssemblyInfo>
2108     </Member>
2109     <Member MemberName="ShouldSerializeAlternatingBackColor">
2110       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeAlternatingBackColor ();" />
2111       <MemberType>Method</MemberType>
2112       <ReturnValue>
2113         <ReturnType>System.Boolean</ReturnType>
2114       </ReturnValue>
2115       <Parameters />
2116       <Docs>
2117         <remarks>
2118           <attribution license="cc4" from="Microsoft" modified="false" />
2119           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2120         </remarks>
2121         <summary>
2122           <attribution license="cc4" from="Microsoft" modified="false" />
2123           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.AlternatingBackColor" /> property should be persisted.</para>
2124         </summary>
2125         <returns>
2126           <attribution license="cc4" from="Microsoft" modified="false" />
2127           <para>true if the property value has changed from its default; otherwise, false.</para>
2128         </returns>
2129       </Docs>
2130       <AssemblyInfo>
2131         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2132         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2133       </AssemblyInfo>
2134     </Member>
2135     <Member MemberName="ShouldSerializeBackColor">
2136       <MemberSignature Language="C#" Value="protected bool ShouldSerializeBackColor ();" />
2137       <MemberType>Method</MemberType>
2138       <ReturnValue>
2139         <ReturnType>System.Boolean</ReturnType>
2140       </ReturnValue>
2141       <Parameters />
2142       <Docs>
2143         <remarks>
2144           <attribution license="cc4" from="Microsoft" modified="false" />
2145           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2146         </remarks>
2147         <summary>
2148           <attribution license="cc4" from="Microsoft" modified="false" />
2149           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.BackColor" /> property should be persisted.</para>
2150         </summary>
2151         <returns>
2152           <attribution license="cc4" from="Microsoft" modified="false" />
2153           <para>true if the property value has changed from its default; otherwise, false.</para>
2154         </returns>
2155       </Docs>
2156       <AssemblyInfo>
2157         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2158         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2159       </AssemblyInfo>
2160     </Member>
2161     <Member MemberName="ShouldSerializeForeColor">
2162       <MemberSignature Language="C#" Value="protected bool ShouldSerializeForeColor ();" />
2163       <MemberType>Method</MemberType>
2164       <ReturnValue>
2165         <ReturnType>System.Boolean</ReturnType>
2166       </ReturnValue>
2167       <Parameters />
2168       <Docs>
2169         <remarks>
2170           <attribution license="cc4" from="Microsoft" modified="false" />
2171           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2172         </remarks>
2173         <summary>
2174           <attribution license="cc4" from="Microsoft" modified="false" />
2175           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.ForeColor" /> property should be persisted.</para>
2176         </summary>
2177         <returns>
2178           <attribution license="cc4" from="Microsoft" modified="false" />
2179           <para>true if the property value has changed from its default; otherwise, false.</para>
2180         </returns>
2181       </Docs>
2182       <AssemblyInfo>
2183         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2184         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2185       </AssemblyInfo>
2186     </Member>
2187     <Member MemberName="ShouldSerializeGridLineColor">
2188       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeGridLineColor ();" />
2189       <MemberType>Method</MemberType>
2190       <ReturnValue>
2191         <ReturnType>System.Boolean</ReturnType>
2192       </ReturnValue>
2193       <Parameters />
2194       <Docs>
2195         <remarks>
2196           <attribution license="cc4" from="Microsoft" modified="false" />
2197           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2198         </remarks>
2199         <summary>
2200           <attribution license="cc4" from="Microsoft" modified="false" />
2201           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.GridLineColor" /> property should be persisted.</para>
2202         </summary>
2203         <returns>
2204           <attribution license="cc4" from="Microsoft" modified="false" />
2205           <para>true if the property value has changed from its default; otherwise, false.</para>
2206         </returns>
2207       </Docs>
2208       <AssemblyInfo>
2209         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2210         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2211       </AssemblyInfo>
2212     </Member>
2213     <Member MemberName="ShouldSerializeHeaderBackColor">
2214       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeHeaderBackColor ();" />
2215       <MemberType>Method</MemberType>
2216       <ReturnValue>
2217         <ReturnType>System.Boolean</ReturnType>
2218       </ReturnValue>
2219       <Parameters />
2220       <Docs>
2221         <remarks>
2222           <attribution license="cc4" from="Microsoft" modified="false" />
2223           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2224         </remarks>
2225         <summary>
2226           <attribution license="cc4" from="Microsoft" modified="false" />
2227           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderBackColor" /> property should be persisted.</para>
2228         </summary>
2229         <returns>
2230           <attribution license="cc4" from="Microsoft" modified="false" />
2231           <para>true if the property value has changed from its default; otherwise, false.</para>
2232         </returns>
2233       </Docs>
2234       <AssemblyInfo>
2235         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2236         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2237       </AssemblyInfo>
2238     </Member>
2239     <Member MemberName="ShouldSerializeHeaderForeColor">
2240       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeHeaderForeColor ();" />
2241       <MemberType>Method</MemberType>
2242       <ReturnValue>
2243         <ReturnType>System.Boolean</ReturnType>
2244       </ReturnValue>
2245       <Parameters />
2246       <Docs>
2247         <remarks>
2248           <attribution license="cc4" from="Microsoft" modified="false" />
2249           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2250         </remarks>
2251         <summary>
2252           <attribution license="cc4" from="Microsoft" modified="false" />
2253           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.HeaderForeColor" /> property should be persisted.</para>
2254         </summary>
2255         <returns>
2256           <attribution license="cc4" from="Microsoft" modified="false" />
2257           <para>true if the property value has changed from its default; otherwise, false.</para>
2258         </returns>
2259       </Docs>
2260       <AssemblyInfo>
2261         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2262         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2263       </AssemblyInfo>
2264     </Member>
2265     <Member MemberName="ShouldSerializeLinkColor">
2266       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeLinkColor ();" />
2267       <MemberType>Method</MemberType>
2268       <ReturnValue>
2269         <ReturnType>System.Boolean</ReturnType>
2270       </ReturnValue>
2271       <Parameters />
2272       <Docs>
2273         <remarks>
2274           <attribution license="cc4" from="Microsoft" modified="false" />
2275           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2276         </remarks>
2277         <summary>
2278           <attribution license="cc4" from="Microsoft" modified="false" />
2279           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkColor" /> property should be persisted.</para>
2280         </summary>
2281         <returns>
2282           <attribution license="cc4" from="Microsoft" modified="false" />
2283           <para>true if the property value has changed from its default; otherwise, false.</para>
2284         </returns>
2285       </Docs>
2286       <AssemblyInfo>
2287         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2288         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2289       </AssemblyInfo>
2290     </Member>
2291     <Member MemberName="ShouldSerializeLinkHoverColor">
2292       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeLinkHoverColor ();" />
2293       <MemberType>Method</MemberType>
2294       <ReturnValue>
2295         <ReturnType>System.Boolean</ReturnType>
2296       </ReturnValue>
2297       <Parameters />
2298       <Docs>
2299         <remarks>
2300           <attribution license="cc4" from="Microsoft" modified="false" />
2301           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2302         </remarks>
2303         <summary>
2304           <attribution license="cc4" from="Microsoft" modified="false" />
2305           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.LinkHoverColor" /> property should be persisted.</para>
2306         </summary>
2307         <returns>
2308           <attribution license="cc4" from="Microsoft" modified="false" />
2309           <para>true if the property value has changed from its default; otherwise, false.</para>
2310         </returns>
2311       </Docs>
2312       <AssemblyInfo>
2313         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2314         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2315       </AssemblyInfo>
2316     </Member>
2317     <Member MemberName="ShouldSerializePreferredRowHeight">
2318       <MemberSignature Language="C#" Value="protected bool ShouldSerializePreferredRowHeight ();" />
2319       <MemberType>Method</MemberType>
2320       <ReturnValue>
2321         <ReturnType>System.Boolean</ReturnType>
2322       </ReturnValue>
2323       <Parameters />
2324       <Docs>
2325         <remarks>
2326           <attribution license="cc4" from="Microsoft" modified="false" />
2327           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2328         </remarks>
2329         <summary>
2330           <attribution license="cc4" from="Microsoft" modified="false" />
2331           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.PreferredRowHeight" /> property should be persisted.</para>
2332         </summary>
2333         <returns>
2334           <attribution license="cc4" from="Microsoft" modified="false" />
2335           <para>true if the property value has changed from its default; otherwise, false.</para>
2336         </returns>
2337       </Docs>
2338       <AssemblyInfo>
2339         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2340         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2341       </AssemblyInfo>
2342     </Member>
2343     <Member MemberName="ShouldSerializeSelectionBackColor">
2344       <MemberSignature Language="C#" Value="protected bool ShouldSerializeSelectionBackColor ();" />
2345       <MemberType>Method</MemberType>
2346       <ReturnValue>
2347         <ReturnType>System.Boolean</ReturnType>
2348       </ReturnValue>
2349       <Parameters />
2350       <Docs>
2351         <remarks>
2352           <attribution license="cc4" from="Microsoft" modified="false" />
2353           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2354         </remarks>
2355         <summary>
2356           <attribution license="cc4" from="Microsoft" modified="false" />
2357           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionBackColor" /> property should be persisted.</para>
2358         </summary>
2359         <returns>
2360           <attribution license="cc4" from="Microsoft" modified="false" />
2361           <para>true if the property value has changed from its default; otherwise, false.</para>
2362         </returns>
2363       </Docs>
2364       <AssemblyInfo>
2365         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2366         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2367       </AssemblyInfo>
2368     </Member>
2369     <Member MemberName="ShouldSerializeSelectionForeColor">
2370       <MemberSignature Language="C#" Value="protected virtual bool ShouldSerializeSelectionForeColor ();" />
2371       <MemberType>Method</MemberType>
2372       <ReturnValue>
2373         <ReturnType>System.Boolean</ReturnType>
2374       </ReturnValue>
2375       <Parameters />
2376       <Docs>
2377         <remarks>
2378           <attribution license="cc4" from="Microsoft" modified="false" />
2379           <para>You typically use this method if you are either creating a designer for the <see cref="T:System.Windows.Forms.DataGridTableStyle" /> or creating your own control incorporating the <see cref="T:System.Windows.Forms.DataGridTableStyle" />.</para>
2380         </remarks>
2381         <summary>
2382           <attribution license="cc4" from="Microsoft" modified="false" />
2383           <para>Indicates whether the <see cref="P:System.Windows.Forms.DataGridTableStyle.SelectionForeColor" /> property should be persisted.</para>
2384         </summary>
2385         <returns>
2386           <attribution license="cc4" from="Microsoft" modified="false" />
2387           <para>true if the property value has changed from its default; otherwise, false.</para>
2388         </returns>
2389       </Docs>
2390       <AssemblyInfo>
2391         <AssemblyVersion>1.0.5000.0</AssemblyVersion>
2392         <AssemblyVersion>2.0.0.0</AssemblyVersion>
2393       </AssemblyInfo>
2394     </Member>
2395   </Members>
2396 </Type>